Bug Fixes and added an option to hide the "options" button on the LGF… #31
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: Release AddOn | |
on: | |
push: | |
tags: | |
- '**' | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
# for github releases, this secret is automatically provided to the workflow | |
jobs: | |
release: # "release" is a job, you can name it anything you want | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # reads history for commit changelog | |
- uses: BigWigsMods/packager@v2 |