Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: MasterDeployCI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Create dist ZIP
run: |
cd dist
zip -r ../dist.zip .
cd ..
- name: Upload dist.zip as artifact
uses: actions/upload-artifact@v4
with:
name: dist-zip
path: dist.zip
Loading