Skip to content

Commit

Permalink
fix release logic
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Dec 12, 2024
1 parent 09c0186 commit b992612
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v2

- name: Setup for macOS code signing
if: matrix.platform == 'macos-12' || matrix.platform == 'macos-latest'
if: (matrix.platform == 'macos-12' || matrix.platform == 'macos-latest') && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == 'true'
uses: matthme/import-codesign-certs@5565bb656f60c98c8fc515f3444dd8db73545dc2
with:
p12-file-base64: ${{ secrets.APPLE_CERTIFICATE }}
Expand All @@ -31,13 +31,6 @@ jobs:
with:
node-version: 20

- name: Retrieve version
run: |
echo "Retrieved App version: $(node -p -e "require('./package.json').version")"
echo "APP_VERSION=$(node -p -e "require('./package.json').version")" >> $GITHUB_OUTPUT
id: version
shell: bash

- name: install Rust
uses: dtolnay/[email protected]

Expand All @@ -59,6 +52,13 @@ jobs:
curl -f -L --output ./pouch/ziptest.webhapp https://github.com/holochain-apps/ziptest/releases/download/ziptest-v0.0.9/ziptest.webhapp
node ./scripts/overwrite-with-test-name.js
- name: Retrieve version
run: |
echo "Retrieved App version: $(node -p -e "require('./package.json').version")"
echo "APP_VERSION=$(node -p -e "require('./package.json').version")" >> $GITHUB_OUTPUT
id: version
shell: bash

- name: Retrieve appId
run: |
echo "APP_ID=$(node ./scripts/read-app-id.js)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit b992612

Please sign in to comment.