Skip to content

Commit

Permalink
chore(ci): create a workflow file for uploading the plugin package as…
Browse files Browse the repository at this point in the history
… artifact
  • Loading branch information
nicomiguelino committed Jan 30, 2025
1 parent 6c9554a commit 63a7273
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/generate-wp-plugin-zip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Generate WordPress Plugin Package

on:
pull_request:
types: [opened, synchronize]

jobs:
build-and-upload:
runs-on: ubuntu-latest

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-plugin
path: artifact/screenly-cast.zip
retention-days: 5

0 comments on commit 63a7273

Please sign in to comment.