-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (44 loc) · 1.33 KB
/
deploy-to-wp-org.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
name: Deploy to WordPress.org Repository
on:
release:
# run only when a new release is published, but not when it's classified as a pre-release.
types: [released]
workflow_dispatch: {}
pull_request:
jobs:
deploy_to_wp_repository:
name: Deploy to WP.org
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version-file: "package.json"
cache-dependency-path: 'package-lock.json'
cache: "npm"
- name: Build
run: |
npm ci
npm run build
- name: Composer
run: |
composer install --no-dev
# - name: WordPress Plugin Deploy
# id: deploy
# uses: 10up/[email protected]
# with:
# generate-zip: true
# env:
# SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
# SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
# - 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