-
-
Notifications
You must be signed in to change notification settings - Fork 11
51 lines (43 loc) · 1.34 KB
/
Copy pathdeploy-to-wordpress.yml
File metadata and controls
51 lines (43 loc) · 1.34 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Deploy to WordPress.org
on:
release:
types: [ published ]
jobs:
tag:
name: New release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: mbstring, intl
tools: composer:v2
coverage: none
- name: Install PHP dependencies
run: |
composer install --no-dev --optimize-autoloader
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: wp-graphql-buddypress
- name: Create artifact
run: |
mkdir plugin-build
composer archive -vvv --format=zip --file="plugin-build/wp-graphql-buddypress"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: wp-graphql-buddypress
path: plugin-build/wp-graphql-buddypress.zip
- name: Upload release asset
uses: softprops/action-gh-release@v2
with:
files: plugin-build/wp-graphql-buddypress.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}