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 12b4ae4 commit 72fdc91Copy full SHA for 72fdc91
.github/workflows/main.yml
@@ -0,0 +1,31 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ tags: ['*']
7
+ pull_request:
8
9
+ workflow_dispatch:
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: a2stuff/build-install-ca65-action@v1
18
+ - uses: a2stuff/build-install-cadius-action@v1
19
20
+ - name: build
21
+ env:
22
+ TERM: xterm-256color
23
+ run: >
24
+ make && make package
25
26
+ - name: deploy new version
27
+ if: startsWith(github.ref, 'refs/tags/')
28
+ uses: ncipollo/[email protected]
29
+ with:
30
+ token: ${{ secrets.GITHUB_TOKEN }}
31
+ artifacts: "out/intbasic.system.po,out/intbasic.system.2mg"
0 commit comments