2020-04-10 09:04:03 +00:00
|
|
|
name: "Build & Deploy to Netlify"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
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@v8
|
|
|
|
- name: Building search.nixos.org
|
2020-05-08 22:44:52 +00:00
|
|
|
run: |
|
2020-06-12 12:29:04 +00:00
|
|
|
nix-build
|
|
|
|
mkdir ./dist
|
|
|
|
cp -RL ./result/* ./dist/
|
2020-04-10 09:04:03 +00:00
|
|
|
- name: Deploy to Netlify
|
|
|
|
uses: nwtgck/actions-netlify@v1.0.5
|
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
|
|
with:
|
|
|
|
publish-dir: './dist'
|
|
|
|
production-branch: 'master'
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
deploy-message: 'Deploy from GitHub Actions'
|
|
|
|
if: github.repository == 'NixOS/nixos-search'
|