Skip to content

Commit

Permalink
Merge pull request #64 from cloudnautique/main
Browse files Browse the repository at this point in the history
attempt to fix workflow is crashing.
  • Loading branch information
cloudnautique authored Feb 15, 2024
2 parents 12a5b6a + b17b17c commit 55c6cea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ jobs:
- name: get release version
id: get_release_version
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
run: |
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "RELEASE=tag/${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build the app
uses: tauri-apps/tauri-action@v0
Expand All @@ -88,12 +90,10 @@ jobs:
- name: publish release
id: publish-release
uses: actions/github-script@v7
env:
release_id: "tag/${TAG}"
with:
script: |
github.rest.repos.updateRelease({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.release_id,
release_id: process.env.RELEASE,
})

0 comments on commit 55c6cea

Please sign in to comment.