5.2.183-Release #191
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: Packager | |
# we need to let GitHub know _when_ we want to release, typically only when we create a new tag. | |
# this will target only tags, and not all pushes to the master branch. | |
# this part can be heavily customized to your liking, like targeting only tags that match a certain word, | |
# other branches or even pullrequests. | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # gets git history for changelogs | |
- name: Package and release for Retail | |
uses: BigWigsMods/packager@v2 | |
with: | |
args: -m .pkgmeta |