Skip to content

🩹 add missing editor script translations #2

🩹 add missing editor script translations

🩹 add missing editor script translations #2

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
jobs:
deploy_to_wp_repository:
name: Deploy to WP.org
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: 🛠️ Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
- run: pnpm i --frozen-lockfile --prod
- run: pnpm run build
- 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: ${{ vars.PLUGIN_SLUG }}
- name: 📦 Upload release asset
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.deploy.outputs.zip-path }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}