Skip to content

Commit

Permalink
dist dir
Browse files Browse the repository at this point in the history
  • Loading branch information
krkabol committed Sep 11, 2024
1 parent 3c67212 commit 76c32e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ 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:
Expand All @@ -39,6 +42,6 @@ jobs:
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: ./dist/
files: ./dist/**
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 76c32e7

Please sign in to comment.