Skip to content

Commit

Permalink
Fix appimage action and deploy version string
Browse files Browse the repository at this point in the history
  • Loading branch information
zakpatterson committed Mar 8, 2021
1 parent c8babd2 commit 449add6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tauri-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 14
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${CI_REF_NAME}_${CI_SHA_SHORT}
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}_${GITHUB_SHA}
shell: bash
- name: install Rust stable
uses: actions-rs/toolchain@v1
Expand All @@ -39,12 +39,12 @@ jobs:
# If using the Vue CLI plugin, tauri:build will be run automatically by tauri-action
# and you can remove `&& yarn build` from this command
run: npm install --no-optional && npm run desktop-release
- uses: tauri-apps/tauri-action@v0
- uses: loloof64/tauri-action@marketplace_2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v${steps.get_version.outputs.VERSION}
releaseName: "App v${steps.get_version.outputs.VERSION}"
tagName: app-v${{ steps.get_version.outputs.VERSION }}
releaseName: App v${{ steps.get_version.outputs.VERSION }}
body: "See the assets to download this version and install."
draft: true
prerelease: false

0 comments on commit 449add6

Please sign in to comment.