Skip to content

add github release workflow and restructure readme #1

add github release workflow and restructure readme

add github release workflow and restructure readme #1

Workflow file for this run

name: Publish
permissions:
contents: write
on:
push:
tags:
- 'v*'
jobs:
build:
name: Publish Plugin ZIP
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Plugin ZIP
run: ./create_plugin_zip.sh
- name: Upload Plugin ZIP to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: codebarista_revocationbutton_*.zip
file_glob: true
tag: ${{ github.ref }}
overwrite: true