nani.wtf/.github/workflows/main.yml

59 lines
1.4 KiB
YAML
Raw Normal View History

2020-09-22 04:03:52 +02:00
name: CI
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-06-13 06:02:29 +02:00
- uses: actions/checkout@v2.3.4
2020-09-22 04:03:52 +02:00
- name: Install Nix
2021-06-13 06:02:29 +02:00
uses: cachix/install-nix-action@v13
2020-09-22 04:03:52 +02:00
with:
skip_adding_nixpkgs_channel: true
2021-06-13 06:02:29 +02:00
install_url: https://nixos-nix-install-tests.cachix.org/serve/lb41az54kzk6j12p81br4bczary7m145/install
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
extra_nix_config: |
experimental-features = nix-command flakes
2020-09-22 04:03:52 +02:00
- name: Build with cachix
2021-06-13 06:02:29 +02:00
uses: cachix/cachix-action@v10
2020-09-22 04:03:52 +02:00
with:
2020-09-23 03:06:34 +02:00
name: hakyll-nix-template
2020-09-22 04:03:52 +02:00
signingKey: ${{ secrets.CACHIX_SIGNING_KEY }}
#authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
2021-06-13 06:02:29 +02:00
- run: nix build
2020-09-22 04:03:52 +02:00
- name: Artifact pages
uses: actions/upload-artifact@v2
with:
name: pages
path: result/dist
deploy:
2020-11-07 23:12:50 +01:00
if: github.ref == 'refs/heads/main'
2020-09-22 04:03:52 +02:00
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: pages
path: result
- name: GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2.5.0
2020-09-22 04:03:52 +02:00
with:
build_dir: result
target_branch: gh-pages
keep_history: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}