Skip to content

Commit 0ae960c

Browse files
committed
🐛 fix: generate release action
1 parent b4ea406 commit 0ae960c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tagged-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v2
1616
- name: Build project
1717
run: |
18-
tar --exclude-ignore=tar.exclude -cf $HOME/tiny-shell.tar .
18+
tar --exclude-ignore=tar.exclude -cf tiny-shell.tar .
1919
- name: Create Release
2020
id: create_release
2121
uses: actions/create-release@v1
@@ -33,6 +33,6 @@ jobs:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
with:
3535
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
36-
asset_path: $HOME/tiny-shell.tar
36+
asset_path: ./tiny-shell.tar
3737
asset_name: tiny-shell.tar
3838
asset_content_type: application/tar

0 commit comments

Comments
 (0)