a3c30a607a
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 13 to 14. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v13...v14) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59 lines
1.7 KiB
YAML
59 lines
1.7 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@v14
|
|
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: nixos-search
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
|
|
- name: Install unstable channel
|
|
run: |
|
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
|
nix-channel --update
|
|
|
|
- name: Installing NixFlakes
|
|
run: |
|
|
nix-env -iA nixpkgs.nixFlakes
|
|
echo 'experimental-features = nix-command flakes' | sudo tee -a /etc/nix/nix.conf
|
|
nix --version
|
|
cat /etc/nix/nix.conf
|
|
echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH
|
|
|
|
- name: Building search.nixos.org
|
|
run: |
|
|
nix build ./#packages.x86_64-linux.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'
|