Merge branch 'main' of github.com:hsjobeki/noogle

This commit is contained in:
hsjobeki 2022-11-26 11:15:13 +01:00
commit 87e959bf32

20
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: "build"
on:
pull_request:
push:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v18
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- run: nix build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./result/static