Fixed test workflow. #3
Workflow file for this run
This file contains hidden or 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: Debug GitHub Actions Environment | |
on: | |
push: | |
branches: | |
- chore-minor-fixes-for-faustwp-non-wpe-release | |
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: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
PLUGIN_DIR: plugins/faustwp | |
SLUG: faustwp | |
VERSION: ${{ env.PLUGIN_VERSION }} |