forked from WordPress/two-factor
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (57 loc) · 1.82 KB
/
deploy.yml
File metadata and controls
67 lines (57 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Deploy
on:
release:
types: [published]
push:
branches:
# For readme and asset updates.
- master
jobs:
deploy:
name: Deploy to WordPress.org
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version-file: '.nvmrc'
- name: Setup PHP and Composer
uses: shivammathur/setup-php@v2
with:
php-version: '5.6'
tools: composer:v2
- name: Install NPM dependencies
run: npm install
- name: Build plugin
run: npm run build
- name: WordPress.org asset and readme update
uses: 10up/action-wordpress-plugin-asset-update@stable
if: github.ref_name == 'trunk'
env:
# Note: this action doesn't support BUILD_DIR so it pushes the raw readme.txt
IGNORE_OTHER_FILES: true
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
- name: WordPress.org deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable
if: startsWith( github.ref, 'refs/tags/' )
with:
generate-zip: true
env:
BUILD_DIR: dist
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
- name: Upload release asset
uses: actions/upload-release-asset@v1
if: startsWith( github.ref, 'refs/tags/' )
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ steps.deploy.outputs.zip-path }}
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip