diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 35b92c4ae5..3356e4cfc4 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -28,9 +28,9 @@ jobs: - name: Generate a canary version id: set-version run: | - # Something like "1.0.0-canary." + # TODO: fix this to be dynamic - extract version from repo SHORT_SHA=$(echo "${GITHUB_SHA}" | cut -c1-7) - VERSION="1.0.0-canary.${SHORT_SHA}" + VERSION="1.0.3-canary.${SHORT_SHA}" echo "version=$VERSION" >> $GITHUB_OUTPUT # ------------------------------------ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ad0282820..d7c9dcb822 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,4 +104,5 @@ jobs: uses: ./.github/workflows/bundle-desktop.yml if: github.event_name == 'pull_request' with: + version: 1.0.3 # TODO: fix this to be dynamic signing: false diff --git a/.github/workflows/pr-comment-bundle-desktop.yml b/.github/workflows/pr-comment-bundle-desktop.yml index a2527f3271..1140070bb1 100644 --- a/.github/workflows/pr-comment-bundle-desktop.yml +++ b/.github/workflows/pr-comment-bundle-desktop.yml @@ -43,6 +43,7 @@ jobs: if: ${{ needs.trigger-on-command.outputs.continue == 'true' }} uses: ./.github/workflows/bundle-desktop.yml with: + version: 1.0.3 # TODO: fix this to be dynamic signing: true secrets: CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }}