Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/pr-build-zip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Testable ZIP

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [master]
workflow_dispatch:

jobs:
zip:
uses: wpeverest/.github/.github/workflows/pr-build-zip.yml@master
with:
node-version: '20.x'
php-version: '7.4'
package-manager: yarn
composer-install: true
build-command: yarn run build
zip-glob: 'dist/*.zip'
artifacts-bucket: themegrill-pr-artifacts
public-base-url: https://themegrill-pr-artifacts.s3.amazonaws.com
s3-region: us-east-1
secrets:
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
ARTIFACTS_KEY: ${{ secrets.ARTIFACTS_KEY }}
ARTIFACTS_SECRET: ${{ secrets.ARTIFACTS_SECRET }}
Loading