Publish PROD ALPS Theme #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish PROD ALPS Theme | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseId: | |
description: 'Release ID to publish' | |
required: true | |
jobs: | |
publish: | |
runs-on: ubuntu-22.04 | |
steps: | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
- id: prepare | |
name: Install Dependencies | |
run: | | |
npm install | |
- id: publish | |
name: Publish Theme | |
run: | | |
npm run wp:theme:manual-release | |
env: | |
RELEASE_ID: ${{ github.event.inputs.releaseId }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CLOUDFLARE_R2_ACCESS_TOKEN: ${{ secrets.CLOUDFLARE_R2_ACCESS_TOKEN }} |