-
Notifications
You must be signed in to change notification settings - Fork 19
55 lines (47 loc) · 1.3 KB
/
deployment.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
name: Deploy to WordPress.org
on:
push:
tags:
- '*'
jobs:
build-and-deploy:
name: Build and Deploy Plugin
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get tag
id: tag
uses: devops-actions/[email protected]
- name: Setup Node JS
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: General debug information
run: |
npm --version
node --version
yarn --version
curl --version
git --version
svn --version
php --version
composer --version
- name: Build
run: bash ./bin/build.sh $SOURCE_TAG
env:
SOURCE_TAG: ${{steps.tag.outputs.tag}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy
run: bash ./bin/deploy.sh
env:
PLUGIN: "gravity-forms-pdf-extended"
SOURCE_TAG: ${{steps.tag.outputs.tag}}
WP_ORG_USERNAME: ${{ secrets.WP_ORG_USERNAME }}
WP_ORG_PASSWORD: ${{ secrets.WP_ORG_PASSWORD }}