f31e580e52
* Clean up workflows * Rename workflow files * Temporarily enable workflows from PR * Add nixpkgs channel to NIX_PATH * Fix typo * Fix index names for warmup * Build verbosely * Fix index names again * Re-add jq * Revert "Temporarily enable workflows from PR" This reverts commit dd040e94645d9e61b80505471f57b1c0e35b1210.
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: "Frontend: Build & Deploy to Netlify"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checking out the repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Installing Nix
|
|
uses: cachix/install-nix-action@v16
|
|
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: nixos-search
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
|
|
- name: Building search.nixos.org
|
|
run: |
|
|
nix -vL build .#frontend
|
|
mkdir ./dist
|
|
cp -RL ./result/* ./dist/
|
|
|
|
- name: Deploy to Netlify
|
|
uses: nwtgck/actions-netlify@v1.2
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
with:
|
|
production-branch: 'main'
|
|
production-deploy: ${{ github.event_name == 'push' }}
|
|
publish-dir: './dist'
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
deploy-message: 'Deploy from GitHub Actions'
|
|
enable-pull-request-comment: true
|
|
enable-commit-comment: true
|
|
enable-commit-status: true
|
|
overwrites-pull-request-comment: false
|
|
if: github.repository == 'NixOS/nixos-search'
|