Skip to content

Updated CHANGELOG.md #186

Updated CHANGELOG.md

Updated CHANGELOG.md #186

Workflow file for this run

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 }}