switch to main branch and publish to netlify
This commit is contained in:
parent
aea6789af6
commit
258e1423a9
13
.github/workflows/main.yml
vendored
13
.github/workflows/main.yml
vendored
|
@ -1,9 +1,8 @@
|
||||||
name: "Build & Deploy to Netlify"
|
name: "Build & Deploy to Netlify"
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build-and-deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -34,7 +33,6 @@ jobs:
|
||||||
cat /etc/nix/nix.conf
|
cat /etc/nix/nix.conf
|
||||||
echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH
|
echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
|
|
||||||
- name: Building import_scripts
|
- name: Building import_scripts
|
||||||
run: |
|
run: |
|
||||||
nix build ./#packages.x86_64-linux.import_scripts
|
nix build ./#packages.x86_64-linux.import_scripts
|
||||||
|
@ -46,13 +44,18 @@ jobs:
|
||||||
cp -RL ./result/* ./dist/
|
cp -RL ./result/* ./dist/
|
||||||
|
|
||||||
- name: Deploy to Netlify
|
- name: Deploy to Netlify
|
||||||
uses: nwtgck/actions-netlify@v1.1.11
|
uses: nwtgck/actions-netlify@v1.1
|
||||||
env:
|
env:
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||||
with:
|
with:
|
||||||
|
production-branch: 'main'
|
||||||
|
production-deploy: true
|
||||||
publish-dir: './dist'
|
publish-dir: './dist'
|
||||||
production-branch: 'master'
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
deploy-message: 'Deploy from GitHub Actions'
|
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'
|
if: github.repository == 'NixOS/nixos-search'
|
||||||
|
|
58
.github/workflows/pulls.yml
vendored
Normal file
58
.github/workflows/pulls.yml
vendored
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
name: "Build & Deploy to Netlify"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
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@v12
|
||||||
|
|
||||||
|
- uses: cachix/cachix-action@v8
|
||||||
|
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 import_scripts
|
||||||
|
run: |
|
||||||
|
nix build ./#packages.x86_64-linux.import_scripts
|
||||||
|
|
||||||
|
- 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.1
|
||||||
|
env:
|
||||||
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||||
|
with:
|
||||||
|
production-branch: 'main'
|
||||||
|
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'
|
Loading…
Reference in a new issue