Update sukka_always_real_ip.sgmodule
, add lan.conf
#1509
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: Build | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 12 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- run: bun install | |
- run: bun run build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.GIT_TOKEN }} | |
user_name: ${{ secrets.GIT_USER }} | |
user_email: ${{ secrets.GIT_EMAIL }} | |
external_repository: SukkaLab/ruleset.skk.moe | |
publish_branch: master | |
publish_dir: public | |
cname: ruleset.skk.moe |