2b7ce58d2f
* Add github action to check flake groups * Run on pull_requests and filter ~files~ *paths* * Use composite action to reuse setup steps * Use common setuo for frontend action * Fix path to action * Remove checkout action from common setup Checkout needed to fetch action * Provide secrets to action Co-authored-by: Rok Garbas <rok@garbas.si>
45 lines
1.2 KiB
YAML
45 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: Setup
|
|
uses: ./.github/actions/common-setup
|
|
with:
|
|
CACHIX_SIGNING_KEY: ${{ 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'
|