Skip to content

Commit

Permalink
rename artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
krkabol committed Sep 11, 2024
1 parent 76c32e7 commit 7add086
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,10 @@ jobs:
run: npm install
- name: Build project
run: npm run build
# Check if dist folder exists
- name: Verify dist folder
run: ls -la ./dist
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build
name: artifacts
path: ./dist

release:
Expand All @@ -38,7 +35,10 @@ jobs:
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: build
name: artifacts
# Check if dist folder exists
- name: Verify dist folder
run: ls -la ./dist
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 7add086

Please sign in to comment.