Skip to content

Commit

Permalink
ci: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
codepuncher committed Dec 27, 2023
1 parent 71c8e6f commit afdb277
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# yamllint disable-line rule:document-start
name: release

# yamllint disable-line rule:truthy
on:
push:
tags:
- "*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup PHP 8.1
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build release
run: composer run-script release:build

- uses: actions/upload-artifact@v4
with:
name: gf-sagepay
path: release/*.zip

lint-wp-org:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v4
with:
name: gf-sagepay
- run: unzip gf-sagepay.zip -d /tmp/plugin-source-code
- run: find /tmp/plugin-source-code -name "*.php" -print0 | xargs -n 1 -0 php -l

publish-to-github-releases:
runs-on: ubuntu-latest
needs: lint-wp-org
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
with:
name: gf-sagepay
- name: Create release
run: gh release create "${GITHUB_REF/refs\/tags\//}" gf-sagepay.zip --generate-notes
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit afdb277

Please # to comment.