Skip to content

Commit

Permalink
Merge pull request #40 from nicomiguelino/generate-plugin-zip-as-arti…
Browse files Browse the repository at this point in the history
…fact

chore(ci): create a workflow file for uploading the plugin package as artifact
  • Loading branch information
vpetersson authored Jan 31, 2025
2 parents 6c9554a + 680e551 commit 23d210d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/generate-wp-plugin-zip.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 23d210d

Please sign in to comment.