chore: Bump client next versions to 1.1.0 (#5485)

This commit is contained in:
Jamil
2024-06-21 09:31:43 -07:00
committed by GitHub
parent 6ecdf6edd2
commit b4cde74bee
14 changed files with 35 additions and 35 deletions

View File

@@ -153,9 +153,9 @@ jobs:
artifact: firezone-client-headless-linux
image_name: client
# mark:next-headless-version
version: 1.0.9
version: 1.1.0
# mark:next-headless-version
release_name: headless-client-1.0.9
release_name: headless-client-1.1.0
- package: firezone-relay
artifact: firezone-relay
image_name: relay

View File

@@ -51,7 +51,7 @@ jobs:
- name: Bundle and sign release
env:
# mark:next-android-version
FIREZONE_PACKAGE_VERSION: 1.0.5
FIREZONE_PACKAGE_VERSION: 1.1.0
KEYSTORE_BASE64: ${{ secrets.GOOGLE_UPLOAD_KEYSTORE_BASE64 }}
KEYSTORE_PASSWORD: ${{ secrets.GOOGLE_UPLOAD_KEYSTORE_PASSWORD }}
KEYSTORE_KEY_PASSWORD: ${{ secrets.GOOGLE_UPLOAD_KEYSTORE_KEY_PASSWORD }}

View File

@@ -96,7 +96,7 @@ jobs:
# Needed because `productbuild` doesn't support picking this up automatically like Xcode does
INSTALLER_CODE_SIGN_IDENTITY: "3rd Party Mac Developer Installer: Firezone, Inc. (47R2M6779T)"
# mark:next-apple-version
FIREZONE_PACKAGE_VERSION: 1.0.6
FIREZONE_PACKAGE_VERSION: 1.1.0
run: |
# Use the same Xcode version as development
sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app

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.10_x86_64
binary-dest-path: firezone-client-gui-linux_1.1.0_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.10_x86_64.dwp
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.0_x86_64.dwp
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.0.10_x86_64.deb
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.0_x86_64.deb
- runs-on: windows-2019
# mark:next-gui-version
binary-dest-path: firezone-client-gui-windows_1.0.10_x86_64
binary-dest-path: firezone-client-gui-windows_1.1.0_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.10_x86_64.pdb
syms-artifact: rust/gui-client/firezone-client-gui-windows_1.1.0_x86_64.pdb
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.0.10_x86_64.msi
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.1.0_x86_64.msi
env:
BINARY_DEST_PATH: ${{ matrix.binary-dest-path }}
AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }}
@@ -50,7 +50,7 @@ jobs:
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_CERT_NAME: ${{ secrets.AZURE_CERT_NAME }}
# mark:next-gui-version
FIREZONE_PACKAGE_VERSION: 1.0.10
FIREZONE_PACKAGE_VERSION: 1.1.0
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
@@ -80,7 +80,7 @@ jobs:
if: ${{ runner.os == 'Windows' }}
shell: bash
# mark:next-gui-version
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.0.10_x64_en-US.msi
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.1.0_x64_en-US.msi
- name: Rename artifacts and compute SHA256
shell: bash
run: ${{ matrix.rename-script }}
@@ -105,6 +105,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
# mark:next-gui-version
TAG_NAME: gui-client-1.0.10
TAG_NAME: gui-client-1.1.0
shell: bash
run: ${{ matrix.upload-script }}

View File

@@ -49,10 +49,10 @@ jobs:
- release_name: gateway-1.1.1
config_name: release-drafter-gateway.yml
# mark:next-headless-version
- release_name: headless-client-1.0.9
- release_name: headless-client-1.1.0
config_name: release-drafter-headless-client.yml
# mark:next-gui-version
- release_name: gui-client-1.0.10
- release_name: gui-client-1.1.0
config_name: release-drafter-gui-client.yml
steps:
- uses: release-drafter/release-drafter@v6

View File

@@ -44,7 +44,7 @@ jobs:
elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then
ARTIFACT=client
# mark:next-headless-version
VERSION="1.0.9"
VERSION="1.1.0"
else
echo "Release doesn't require publishing Docker images"
exit 0