Skip to content

Deploying refs/tags/3.1.2 (9c20fe3a8e5577b2e7ee3094b0c6a8d1af15859a) #17

Deploying refs/tags/3.1.2 (9c20fe3a8e5577b2e7ee3094b0c6a8d1af15859a)

Deploying refs/tags/3.1.2 (9c20fe3a8e5577b2e7ee3094b0c6a8d1af15859a) #17

Workflow file for this run

name: Deploy plugin
run-name: Deploying ${{ github.ref }} (${{ github.sha }})
on: workflow_dispatch
env:
SVNUSER: ${{ vars.SVNUSER }}
SVNURL: ${{ vars.SVNURL }}
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install Node.js dependencies
run: yarn install
- name: Build frontend
run: yarn run build
- name: Run deploy script
run: bash bin/deploy.sh
env:
SVNPASS: ${{ secrets.SVNPASS }}