We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c73523 commit dfd2080Copy full SHA for dfd2080
1 file changed
.github/workflows/master.yml
@@ -0,0 +1,20 @@
1
+name: MasterDeployCI
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - name: Create dist ZIP
12
+ run: |
13
+ cd dist
14
+ zip -r ../dist.zip .
15
+ cd ..
16
+ - name: Upload dist.zip as artifact
17
+ uses: actions/upload-artifact@v4
18
+ with:
19
+ name: dist-zip
20
+ path: dist.zip
0 commit comments