2024-02-13 02:53:19 -06:00
|
|
|
name: Website
|
2024-02-13 02:38:46 -06:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [website]
|
|
|
|
workflow_dispatch: {}
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: website-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
gh-pages:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
repository: cha0s/flecks
|
|
|
|
token: ${{ secrets.GH_PAT }}
|
2024-02-13 02:47:33 -06:00
|
|
|
- run: npm run gh-pages
|