WooGraphQL v0.21.0 #43
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: Package for Release | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
tag: | |
name: Package new release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
extensions: mbstring, intl | |
tools: composer | |
- name: Install dependencies | |
run: | | |
composer install --no-dev --optimize-autoloader | |
- name: Create Artifact | |
run: | | |
mkdir plugin-build | |
composer archive -vvv --format=zip --file="plugin-build/wp-graphql-woocommerce" | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wp-graphql-woocommerce | |
path: plugin-build/wp-graphql-woocommerce.zip | |
- name: Upload release asset | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: plugin-build/wp-graphql-woocommerce.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |