Port right-click map context menus to new menu system #814
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 Addon (Mainline) | |
on: | |
push: | |
branches: [ master ] | |
tags: [ '*' ] | |
paths-ignore: | |
- '.github/**' | |
- 'tools/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install luarocks | |
run: sudo apt-get install luarocks | |
- name: Install luacheck | |
run: luarocks install --local luacheck | |
- name: Run luacheck | |
run: ~/.luarocks/bin/luacheck . --no-color -q | |
build: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # reads history for commit changelog | |
- uses: kemayo/actions-recent-changelog@v1 | |
if: startsWith(github.ref, 'refs/tags') | |
with: | |
input: CHANGELOG.md | |
output: RECENT_CHANGES.md | |
- name: Create Mainline Package | |
uses: BigWigsMods/packager@master | |
with: | |
args: -S | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} |