We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be12a7 commit 9971947Copy full SHA for 9971947
.github/workflows/make.yml
@@ -27,3 +27,18 @@ jobs:
27
github-token: ${{ secrets.GITHUB_TOKEN }}
28
path-to-lcov: "./example/coverage/lcov.info"
29
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
44
+ files: linux.tar
0 commit comments