Skip to content

Indenting fix for YML file #8

Indenting fix for YML file

Indenting fix for YML file #8

Workflow file for this run

name: Package and Upload Plugin
on:
release:
types: [published]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run PHP_CodeSniffer
uses: php-actions/phpcs@v1
with:
php_version: '8.1'
path: proxy-aware-https-fix.php
standard: WordPress
- name: Zip plugin
run: zip -r proxy-aware-https-fix.zip proxy-aware-https-fix.php README.md LICENSE CHANGELOG.md
- name: Upload to GitHub Release
uses: softprops/action-gh-release@v1
with:
files: proxy-aware-https-fix.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}