Skip to content

Merge pull request #18 from EchoDash/release/2.0.0 #12

Merge pull request #18 from EchoDash/release/2.0.0

Merge pull request #18 from EchoDash/release/2.0.0 #12

Workflow file for this run

name: Create Release
on:
push:
tags:
- '*.*.*'
permissions:
contents: write # This is required for creating releases
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- 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 }}
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.deploy.outputs.zip-path }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}