My website lesbian.skin
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add deploy action

+19
+19
.forgejo/workflows/build_and_deploy.yml
··· 1 + name: 🚀 Build and Deploy 2 + on: push 3 + jobs: 4 + run: 5 + runs-on: ubuntu-latest 6 + steps: 7 + - uses: actions/checkout@v4 8 + - uses: github.com/erlef/setup-beam@v1 9 + with: 10 + otp-version: "27" 11 + gleam-version: "1.4.1" 12 + - run: gleam run -m build 13 + - run: cd priv 14 + - run: git init 15 + - run: git remote set-url origin https://codeberg.org/naomi/naomieow.xyz.git 16 + - run: git switch --orphan pages 17 + - run: git add -A 18 + - run: git commit -m "Deploy site" 19 + - run: git push origin pages