From c605b5e9a3871b2daea5cd5a50dbea656e915c17 Mon Sep 17 00:00:00 2001 From: arjad Date: Sun, 8 Jun 2025 14:13:28 +0500 Subject: [PATCH] add workflow --- .github/workflows/master.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/master.yml 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