Skip to content

Commit

Permalink
more build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy committed Jun 14, 2024
1 parent 26f6e10 commit 9abdcfa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release-tauri-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
draft: true

release-tauri-app:
needs: publish-happ
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -111,6 +112,11 @@ jobs:
run: |
npm install
- name: Retrieve version
run: |
echo "APP_VERSION=$(cat src-tauri/tauri.conf.json | grep -oP '(?<="version": ")[^"]*')"
id: version-also

- name: Print version
run: |
echo "The Version was: ${{ needs.publish-happ.outputs.appVersion }}"
Expand All @@ -124,7 +130,7 @@ jobs:
with:
repository: "holochain-apps/volla-chat"
token: ${{ secrets.GITHUB_TOKEN }}
version: v0.0.1-dev.3
version: v${{ steps.version-also.outputs.APP_VERSION }}
asset-file: '*.happ'
asset-output: 'workdir/'

Expand Down

0 comments on commit 9abdcfa

Please sign in to comment.