2025-02-03 02:44:56 +00:00
|
|
|
#on: [push]
|
|
|
|
#jobs:
|
|
|
|
# test:
|
|
|
|
# runs-on: bookworm
|
|
|
|
# steps:
|
|
|
|
# - run: echo All Good
|
2025-02-03 02:45:56 +00:00
|
|
|
on: [push]
|
2025-01-22 20:37:08 +00:00
|
|
|
jobs:
|
2025-02-03 02:44:56 +00:00
|
|
|
publish:
|
2025-02-03 02:21:12 +00:00
|
|
|
runs-on: bookworm
|
2025-02-03 02:48:04 +00:00
|
|
|
steps:
|
2025-02-03 02:44:56 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
fetch-depth: 0
|
2025-02-03 02:52:02 +00:00
|
|
|
- name: public branch
|
|
|
|
run: |
|
|
|
|
git checkout pages
|
|
|
|
git restore --source main -- ./public/
|
2025-01-22 20:52:06 +00:00
|
|
|
|