Update changelog files #19
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: Package and release | |
on: | |
push: | |
tags: | |
# Start actions only with version 'v0.20.0'; allow up to 'v0.99.999+' | |
- 'v0.[2-9][0-9].[0-9]+' | |
# Manual trigger | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
# "GITHUB_TOKEN" is a secret always provided to the workflow | |
# for your own token, the name cannot start with "GITHUB_" | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# gets entire git history, needed for automatic changelogs | |
- name: Package and release | |
uses: BigWigsMods/packager@v2 | |
with: | |
args: -g retail |