Skip to content

Commit 9971947

Browse files
authored
Upload artifacts (#19)
1 parent 3be12a7 commit 9971947

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/make.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,18 @@ jobs:
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
path-to-lcov: "./example/coverage/lcov.info"
2929
base-path: "./example"
30+
31+
- name: Make tarball
32+
run: tar cvf linux.tar 6502_tester LICENSE README.md
33+
34+
- name: Upload artifacts
35+
uses: actions/upload-artifact@v3
36+
with:
37+
name: Binary
38+
path: linux.tar
39+
40+
- name: Release
41+
uses: softprops/action-gh-release@v1
42+
if: startsWith(github.ref, 'refs/tags/')
43+
with:
44+
files: linux.tar

0 commit comments

Comments
 (0)