From b1de4686fbb0182d41c53093cb1b9e9b769e1ab6 Mon Sep 17 00:00:00 2001 From: codepuncher Date: Wed, 27 Dec 2023 13:53:57 +0000 Subject: [PATCH] ci: release workflow --- .github/workflows/release.yml | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..20dd7be --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,40 @@ +# yamllint disable-line rule:document-start +name: release + +# yamllint disable-line rule:truthy +on: + workflow_run: + workflows: ["ci"] + branches: [master] + types: + - completed + +jobs: + build: + runs-on: ubuntu-latest + steps: + - 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