harry
2025-03-26 21:41:18 +00:00
committed by GitHub
parent 1bc5abd623
commit 04bc9fbd13
73 changed files with 777 additions and 312 deletions
+23
View File
@@ -0,0 +1,23 @@
name: Generate web assets
on:
push:
branches:
- master
jobs:
generate_static_assets:
if: ( !contains(github.event.head_commit.message, '[ci skip]') )
runs-on: ubuntu-latest
concurrency: gen-assets
steps:
- uses: actions/checkout@v3
- name: Generate static assets
run: |
mv tgui/public/ assets
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
BRANCH: gh-pages
CLEAN: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SINGLE_COMMIT: true
FOLDER: assets