Skip to content

release v1.0.9

release v1.0.9 #20

Workflow file for this run

name: Deploy to WordPress.org
on:
push:
tags:
- "*"
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: getdave-responsive-navigation-block
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#VERSION: "deploy-test" # debugging only
jobs:
tag:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build # Remove or modify this step as needed
run: |
npm install
npm run build
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
with:
generate-zip: true
dry-run: false # set to false to deploy
- name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
files: ${{github.workspace}}/${{ env.SLUG }}.zip
#tag_name: ${{ env.VERSION }} # debugging only