dev: should reduce CI build times

This commit is contained in:
NotAShelf 2023-02-06 22:02:44 +03:00
parent 7db1f6779c
commit 6694b65c82
No known key found for this signature in database
GPG Key ID: 5B5C8895F28445F1
3 changed files with 9 additions and 6 deletions

View File

@ -3,10 +3,12 @@ name: build-and-cache
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches:
- main
paths-ignore: paths-ignore:
- '**/README.md' - '.github/**'
- '**/.gitignore' - './assets/**'
- '**/assets' - '.gitignore'
jobs: jobs:
nix: nix:

View File

@ -1,10 +1,10 @@
name: "Pull request" name: "Check validity of flakes"
on: on:
pull_request: pull_request:
workflow_dispatch:
push: push:
branches: branches:
- main - main
workflow_dispatch:
jobs: jobs:
nix-flake-check: nix-flake-check:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -1,5 +1,6 @@
name: Github Pages docs name: Github Pages docs
on: on:
workflow_dispatch:
push: push:
branches: branches:
- main - main
@ -25,7 +26,7 @@ jobs:
uses: cachix/install-nix-action@v18 uses: cachix/install-nix-action@v18
- name: Build - name: Build
run: | run: |
nix build '.#docs-html' nix build '.#docs'
cp -r result/share/doc/neovim-flake public cp -r result/share/doc/neovim-flake public
- name: Deploy - name: Deploy
uses: peaceiris/actions-gh-pages@v3 uses: peaceiris/actions-gh-pages@v3