Skip to content

Commit

Permalink
refactor: fix artifacts folder issue
Browse files Browse the repository at this point in the history
Signed-off-by: seven <zilisheng1996@gmail.com>
  • Loading branch information
Blankll committed Jun 29, 2024
1 parent 562da70 commit 78aa1f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Node.js CI
run-name: ${{ github.event.head_commit.message }}

on:
pull_request:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: distributions release

run-name: ${{ github.event.head_commit.message }}
on:
pull_request:
branches: [ master ]
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
path: ${{ github.workspace }}/src-tauri/target/**/*.{dmg,rpm,deb,exe}
path: ~/src-tauri/target/**/*.{dmg,rpm,deb,exe}

release:
needs: pre-release
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
${{ steps.changelog.outputs.compareurl }}
${{ steps.changelog.outputs.changelog }}
files: ${{ github.workspace }}/src-tauri/target/**/*
files: ~/src-tauri/target/**/*
# - name: Distribute artifacts to R2
# uses: ryand56/r2-upload-action@master
# if: steps.tag_release.outputs.successful
Expand Down

0 comments on commit 78aa1f5

Please sign in to comment.