Skip to content

v1.4.0

v1.4.0 #24

Workflow file for this run

name: Build
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install and run luacheck
run: |
sudo apt-get install luarocks
luarocks install --local luacheck
/home/runner/.luarocks/bin/luacheck . -q
- name: Create changelog
# Grabs everything under the top level # header and outputs to a new file
run: sed -n "3,/^# / {/^# /d; p}" changelog.md > changes.md
- name: Package and Release
uses: BigWigsMods/packager@v2
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}