Skip to content

Fixed release package process POC. #1

Fixed release package process POC.

Fixed release package process POC. #1

Workflow file for this run

name: Debug GitHub Actions Environment
on:
push:
branches:
- chore-fix-github-workflow-for-faustwp-plugin
jobs:
release_packages:
name: Release Packages
runs-on: ubuntu-22.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0 # Ensure full Git history
- name: Set Plugin Version (Fallback)
run: echo "PLUGIN_VERSION=1.0.0-test" >> $GITHUB_ENV
- name: Deploy WordPress Plugin
uses: ./.github/actions/debug
with:
plugin_dir: plugins/faustwp
slug: faustwp
version: ${{ env.PLUGIN_VERSION }}
github_token: ${{ secrets.GITHUB_TOKEN }}
npm_token: ${{ secrets.NPM_TOKEN }}