Update CHANGELOG.md #177
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: Automated Release | |
on: | |
push: | |
tags: | |
- "v[0-9]+" | |
jobs: | |
build: | |
name: Release Addon | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# Build release artifacts and upload them to CF, WoWI and GitHub | |
- name: Build release | |
id: release | |
run: | | |
python scripts/release.py ${GITHUB_REF:10} \ | |
--curse-token ${{ secrets.CURSEFORGE_API_TOKEN }} \ | |
--wago-token ${{ secrets.WAGO_API_TOKEN }} \ | |
--wowi-token ${{ secrets.WOWINTERFACE_API_TOKEN }} \ | |
--github-token ${{ secrets.GITHUB_TOKEN }} |