mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-19 10:06:56 +01:00
* Tidy the code, better commenting when things go wrong * text! * stale labeller * get the labels right * avoid complications * Update .github/workflows/merge_upstream_master.yml * Update .github/workflows/merge_upstream_master.yml * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * makes the merge upstream thingy comment, and approve its generated workflows * wow * remove this, paradise bot reigns supreme --------- Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
# GitHub action to autorender nanomaps outside the game
|
|
# This kills off the awful verb we have that takes a full 50 seconds and hangs the whole server
|
|
# The file names and locations are VERY important here
|
|
# DO NOT EDIT THIS UNLESS YOU KNOW WHAT YOU ARE DOING
|
|
# -aa
|
|
name: 'Render Nanomaps'
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
generate_maps:
|
|
name: 'Generate NanoMaps'
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- id: create_token
|
|
uses: actions/create-github-app-token@v1
|
|
with:
|
|
app-id: ${{ secrets.APP_ID }}
|
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
|
|
|
- run: echo "GH_TOKEN=${{ steps.create_token.outputs.token }}" >> "$GITHUB_ENV"
|
|
|
|
- name: 'Update Branch'
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ steps.create_token.outputs.token }}
|
|
|
|
- name: Branch
|
|
run: |
|
|
git branch -f nanomap-render
|
|
git checkout nanomap-render
|
|
git reset --hard origin/master
|
|
|
|
- name: 'Generate Maps'
|
|
run: './tools/github-actions/nanomap-renderer-invoker.sh'
|
|
|
|
- name: 'Commit Maps and open PR'
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "NanoMap Generation"
|
|
git pull origin master
|
|
git commit -m "NanoMap Auto-Update (`date`)" -a || true
|
|
git push -f -u origin nanomap-render
|
|
gh pr create -t "Automatic NanoMap Update" -b "This pull request updates the server NanoMaps. Please review the diff images before merging." -l "NanoMaps" -H "nanomap-render" -B "master"
|