-
-
Notifications
You must be signed in to change notification settings - Fork 16
57 lines (45 loc) · 1.54 KB
/
main.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: PHP Composer
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '5.6'
extensions: zip
- name: Set Node Version
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Build
run: npx webpack -p
- name: WordPress Plugin Deploy
if: startsWith(github.ref, 'refs/tags/')
uses: 10up/[email protected]
env:
SLUG: acf-image-aspect-ratio-crop
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
- name: Release
run: |
rm -fr .github node_modules .travis.yml .editorconfig .gitignore .prettierrc.js deploy.sh deploy-github.sh tests codeception.dist.yml
zip -r acf-image-aspect-ratio-crop.zip . -x *.git*
- uses: actions/upload-artifact@master
with:
name: acf-image-aspect-ratio-crop.zip
path: acf-image-aspect-ratio-crop.zip
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: acf-image-aspect-ratio-crop.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}