Skip to content

Commit 9596446

Browse files
committed
added release workflow
1 parent c258740 commit 9596446

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release Build
2+
3+
# Controls when the workflow will run
4+
on:
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Run a one-line script
16+
run: rm -f AnalogClock.tapp; zip -j -0 AnalogClock.tapp src/*.be
17+
18+
- name: Upload a Build Artifact
19+
uses: actions/upload-artifact@v3.1.3
20+
with:
21+
name: AnalogClock.tapp
22+
path: AnalogClock.tapp
23+
retention-days: 90

0 commit comments

Comments
 (0)