Skip to content

Commit

Permalink
Add deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Jan 15, 2024
1 parent 28a387e commit 2cd8db8
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/deploy-dotorg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy to WordPress.org

on:
release:
types:
- published

jobs:
release:
name: Publish release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm

- name: Install dependencies
run: npm ci

- name: Build plugin
run: npm run build

- name: WordPress plugin deploy
uses: 10up/action-wordpress-plugin-deploy@stable
id: deploy
with:
generate-zip: true
dry-run: true
env:
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SLUG: preferred-languages

- name: Upload release asset
run: gh release upload ${{ github.event.release.tag_name }} ${{ steps.deploy.outputs.zip-path }}
env:
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}

0 comments on commit 2cd8db8

Please sign in to comment.