range: Register updater #15
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: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
with: | |
# this fetches everything, we'll need it to generate changelogs | |
fetch-depth: 0 | |
- name: Install Lua | |
run: | | |
# apt-get commands | |
echo '::group::apt update' | |
sudo apt-get -qq update | |
echo '::endgroup::' | |
echo '::group::apt install lua 5.1' | |
sudo apt-get install -qq lua5.1 | |
echo '::endgroup::' | |
- name: Generate changelog | |
run: | | |
lua utils/changelog > CHANGELOG.md | |
- name: Package and release | |
uses: BigWigsMods/packager@v2 | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} |