chore: Bump versions to point to new artifacts (#5337)

Currently dl links are broken due to the updated format.
This commit is contained in:
Jamil
2024-06-12 02:01:59 -05:00
committed by GitHub
parent a11697ca18
commit 8700a680d5
12 changed files with 61 additions and 87 deletions

View File

@@ -153,9 +153,9 @@ jobs:
artifact: firezone-client-headless-linux
image_name: client
# mark:next-headless-version
version: 1.0.6
version: 1.0.7
# mark:next-headless-version
release_name: headless-client-1.0.6
release_name: headless-client-1.0.7
- package: firezone-relay
artifact: firezone-relay
image_name: relay
@@ -163,9 +163,9 @@ jobs:
artifact: firezone-gateway
image_name: gateway
# mark:next-gateway-version
version: 1.0.6
version: 1.1.0
# mark:next-gateway-version
release_name: gateway-1.0.6
release_name: gateway-1.1.0
- package: snownet-tests
artifact: snownet-tests
image_name: snownet-tests
@@ -340,7 +340,7 @@ jobs:
- name: relay
- name: gateway
# mark:next-gateway-version
version: 1.0.6
version: 1.1.0
- name: client
# mark:next-client-version
version: 1.0.6

View File

@@ -26,22 +26,22 @@ jobs:
include:
- runs-on: ubuntu-20.04
# mark:next-gui-version
binary-dest-path: firezone-client-gui-linux_1.0.6_x86_64
binary-dest-path: firezone-client-gui-linux_1.0.7_x86_64
rename-script: ../../scripts/build/tauri-rename-ubuntu.sh
upload-script: ../../scripts/build/tauri-upload-ubuntu.sh
# mark:next-gui-version
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.0.6_x86_64.dwp
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.0.7_x86_64.dwp
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.0.6_x86_64.deb
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.0.7_x86_64.deb
- runs-on: windows-2019
# mark:next-gui-version
binary-dest-path: firezone-client-gui-windows_1.0.6_x86_64
binary-dest-path: firezone-client-gui-windows_1.0.7_x86_64
rename-script: ../../scripts/build/tauri-rename-windows.sh
upload-script: ../../scripts/build/tauri-upload-windows.sh
# mark:next-gui-version
syms-artifact: rust/gui-client/firezone-client-gui-windows_1.0.6_x86_64.pdb
syms-artifact: rust/gui-client/firezone-client-gui-windows_1.0.7_x86_64.pdb
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.0.6_x86_64.msi
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.0.7_x86_64.msi
env:
BINARY_DEST_PATH: ${{ matrix.binary-dest-path }}
AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }}
@@ -78,7 +78,7 @@ jobs:
if: ${{ runner.os == 'Windows' }}
shell: bash
# mark:next-gui-version
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.0.6_x64_en-US.msi
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.0.7_x64_en-US.msi
- name: Rename artifacts and compute SHA256
shell: bash
run: ${{ matrix.rename-script }}
@@ -103,6 +103,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
# mark:next-gui-version
TAG_NAME: gui-client-1.0.6
TAG_NAME: gui-client-1.0.7
shell: bash
run: ${{ matrix.upload-script }}

View File

@@ -46,13 +46,13 @@ jobs:
matrix:
include:
# mark:next-gateway-version
- release_name: gateway-1.0.6
- release_name: gateway-1.1.0
config_name: release-drafter-gateway.yml
# mark:next-headless-version
- release_name: headless-client-1.0.6
- release_name: headless-client-1.0.7
config_name: release-drafter-headless-client.yml
# mark:next-gui-version
- release_name: gui-client-1.0.6
- release_name: gui-client-1.0.7
config_name: release-drafter-gui-client.yml
steps:
- uses: release-drafter/release-drafter@v6

View File

@@ -45,11 +45,11 @@ jobs:
if [[ "${{ github.event.release.name }}" =~ gateway* ]]; then
image=gateway
# mark:next-gateway-version
VERSION="1.0.6"
VERSION="1.1.0"
elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then
image=client
# mark:next-headless-version
VERSION="1.0.6"
VERSION="1.0.7"
else
echo "Release doesn't require publishing Docker images"
exit 0