-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 1004 Bytes
/
update-assets.yml
File metadata and controls
34 lines (32 loc) · 1004 Bytes
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
name: Update assets on WordPress.org
on:
push:
branches:
- main
jobs:
assets-parcelpro:
name: Assets Parcel Pro
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: composer build:parcelpro
- uses: 10up/action-wordpress-plugin-asset-update@stable
env:
SVN_USERNAME: ${{ vars.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLUG: woo-parcel-pro
ASSETS_DIR: .wordpress-parcel-pro
IGNORE_OTHER_FILES: true
assets-shopsunited:
name: Assets Shops United
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: composer build:shopsunited
- uses: 10up/action-wordpress-plugin-asset-update@stable
env:
SVN_USERNAME: ${{ vars.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLUG: integration-shops-united-woocommerce
ASSETS_DIR: .wordpress-shops-united
IGNORE_OTHER_FILES: true