Deploying refs/tags/3.1.1 (269e269cabea5594d09ca679f578ad941adb6adf) #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |