diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml new file mode 100644 index 00000000..da992a1b --- /dev/null +++ b/.github/workflows/master.yml @@ -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