Update release.yml to generate the correct folder name (#21) #6
Workflow file for this run
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: ClassicPress Directory Coding Standard checks. | |
on: [pull_request, push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
phpcs: | |
name: CPCS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: CPCS get rules | |
run: | | |
wget https://raw.githubusercontent.com/ClassicPress/ClassicPress-Coding-Standards/main/phpcs.xml | |
sed -i '/^\t<!-- start config -->.*/a\ | |
<file>.</file> | |
' phpcs.xml | |
sed -i '/MY_DOMAIN/ s//no-one/' phpcs.xml | |
mv phpcs.xml phpcs.xml.dist | |
- name: CPCS checks | |
uses: 10up/wpcs-action@stable | |
with: | |
use_local_config: 'true' | |
enable_warnings: 'true' | |
extra_args: '--report-json=./phpcs.json' | |
- name: Update summary | |
run: | | |
npm i -g github:10up/phpcs-json-to-md | |
phpcs-json-to-md --path ./phpcs.json --output ./phpcs.md | |
cat phpcs.md >> $GITHUB_STEP_SUMMARY | |
if: always() |