Skip to content

Pods 3.0.10

Pods 3.0.10 #711

Workflow file for this run

name: 'Auto Build'
env:
WPORG_PLUGIN_FILE: 'init.php'
WPORG_PLUGIN_VERSION_CONSTANT_NAME: 'PODS_VERSION'
on:
workflow_dispatch:
pull_request:
paths:
- 'ui/js/blocks/src/**'
- 'ui/js/dfv/src/**'
- 'ui/styles/src/**'
- 'package.json'
- 'webpack.*.js'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '16.13.2'
- name: Get npm cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v3
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Maybe build Pods Blocks JS API, Pods DFV, and styles assets
run: npm run build-production
- name: Check the version number
shell: bash
run: PLUGIN_VERSION=`jq -r .version package.json`
- name: Run wporg-replace
uses: sc0ttkclark/[email protected]
with:
plugin_version: ${{ PLUGIN_VERSION }}

Check failure on line 44 in .github/workflows/auto-build.yml

View workflow run for this annotation

GitHub Actions / Auto Build

Invalid workflow file

The workflow is not valid. .github/workflows/auto-build.yml (Line: 44, Col: 27): Unrecognized named-value: 'PLUGIN_VERSION'. Located at position 1 within expression: PLUGIN_VERSION
plugin_version_constant_name: ${{ env.WPORG_PLUGIN_VERSION_CONSTANT_NAME }}
plugin_file: ${{ env.WPORG_PLUGIN_FILE }}
plugin_path: ${{ github.workspace }}
- uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: ui/js/blocks/pods-blocks-api.min.* ui/js/dfv/pods-dfv.min.* ui/styles/dist/*.css readme.txt ${{ env.WPORG_PLUGIN_FILE }}
commit_message: Auto rebuild assets