-
Notifications
You must be signed in to change notification settings - Fork 8
79 lines (67 loc) · 2.68 KB
/
deploy.yml
File metadata and controls
79 lines (67 loc) · 2.68 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
68
69
70
71
72
73
74
75
76
77
78
79
name: Deploy to WordPress.org
on:
release:
types: [ published ]
jobs:
tag:
# Name
name: Plugin Deployment
# Virtual Environment to use
# @see: https://github.com/actions/virtual-environments
runs-on: ubuntu-latest
# Steps to deploy
steps:
# Checkout (copy) this repository's Plugin to this VM.
- name: Checkout Plugin
uses: actions/checkout@v6
# Installs required packages that must be included in the Plugin
# as specified in composer.json's "require" section.
# "require-dev" is ignored by design, as these are only needed for
# testing
- name: Run Composer
run: composer install --no-dev
# Build the frontend CSS and JS assets
- name: Run npm
run: |
npm install
npm run build
# Confirm that expected files exist
# if e.g. `composer install` or `npm run build` fails
- name: Check Kit WordPress Libraries and Assets Exists
working-directory: ${{ env.PLUGIN_DIR }}
run: |
set -e
files=(
"resources/frontend/css/frontend.css"
"resources/frontend/js/dist/frontend.min.asset.php"
"resources/frontend/js/dist/frontend.min.js"
"vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-api-traits.php"
"vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-api-v4.php"
"vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-log.php"
"vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-resource-v4.php"
"vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-review-request.php"
)
for file in "${files[@]}"; do
echo "Checking: $file"
test -f "$file" || { echo "❌ Missing required file: $file"; exit 1; }
done
echo "✅ All required files exist."
# Deploy to wordpress.org, if expected files exist.
- name: WordPress Plugin Deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable
with:
generate-zip: true
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLUG: convertkit
- name: Upload release asset
uses: actions/upload-release-asset@v1
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