Skip to content

Commit

Permalink
feat(workflow): adds folder in release
Browse files Browse the repository at this point in the history
  • Loading branch information
m1dugh committed Nov 13, 2023
1 parent 5e72e85 commit 0777751
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,12 @@ jobs:
path: ./dist
- name: Create release dist
run: |
tar -cvf ./release.tar.gz ./dist/ ./package.json ./workers/ ./manifest.json ./static
mkdir rosettastonks
mv ./dist/ ./package.json ./workers/ ./manifest.json ./static ./rosettastonks
tar -cvf ./rosettastonks.tar.gz ./rosettastonks
- name: Create github release
id: create_release
uses: ncipollo/release-action@v1
with:
artifacts: ./release.tar.gz
artifacts: ./rosettastonks.tar.gz

0 comments on commit 0777751

Please sign in to comment.