Skip to content

Commit

Permalink
Merge pull request #65 from cloudnautique/main
Browse files Browse the repository at this point in the history
tag issue addressed.
  • Loading branch information
cloudnautique authored Feb 16, 2024
2 parents 55c6cea + 990e438 commit 491a950
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Rust Cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
workspaces: "./tauri/src-tauri -> target"

- name: Set up Nodejs
uses: actions/setup-node@v4
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/tag-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Rust Cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
workspaces: "./tauri/src-tauri -> target"

- name: Set up Nodejs
uses: actions/setup-node@v4
Expand All @@ -67,9 +67,7 @@ jobs:
- name: get release version
id: get_release_version
run: |
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "RELEASE=tag/${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Build the app
uses: tauri-apps/tauri-action@v0
Expand All @@ -95,5 +93,5 @@ jobs:
github.rest.repos.updateRelease({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: process.env.RELEASE,
release_id: process.env.TAG,
})

0 comments on commit 491a950

Please sign in to comment.