Skip to content

Commit

Permalink
fix: wrong directory name "build"
Browse files Browse the repository at this point in the history
  • Loading branch information
chemio9 authored Dec 13, 2024
1 parent 3ca3137 commit 3f44124
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
command: c
cwd: ./
files: |
./build
outPath: build.tar.gz
./dist
outPath: dist.tar.gz
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: build
path: |
build.tar.gz
./dist.tar.gz
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build.tar.gz
files: dist.tar.gz

0 comments on commit 3f44124

Please sign in to comment.