-
-
Notifications
You must be signed in to change notification settings - Fork 130
37 lines (35 loc) · 1.02 KB
/
package-for-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 }}