diff --git a/.github/workflows/generate-wp-plugin-zip.yml b/.github/workflows/generate-wp-plugin-zip.yml new file mode 100644 index 0000000..b3806e3 --- /dev/null +++ b/.github/workflows/generate-wp-plugin-zip.yml @@ -0,0 +1,26 @@ +name: Generate WordPress Plugin Package + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build-and-upload: + runs-on: ubuntu-24.04 + + steps: + - uses: actions/checkout@v4 + + - name: Package WordPress Plugin + run: | + ./bin/build.sh + + - name: Upload Package As Artifact + uses: actions/upload-artifact@v4 + with: + name: screenly-cast + path: build/screenly-cast