fix: temp fix to make CI workflow pass (#970)

This commit is contained in:
Salman Mohammed
2025-01-30 20:24:53 -05:00
committed by GitHub
parent 8306c4cba8
commit 0020123ee8
3 changed files with 4 additions and 2 deletions

View File

@@ -28,9 +28,9 @@ jobs:
- name: Generate a canary version
id: set-version
run: |
# Something like "1.0.0-canary.<short sha>"
# 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
# ------------------------------------

View File

@@ -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

View File

@@ -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 }}