Skip to content

Zip automation + linting prep #3

Zip automation + linting prep

Zip automation + linting prep #3

Workflow file for this run

name: Package and Upload Plugin
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- 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 }}