deploy to netlify (#1)

This commit is contained in:
Rok Garbas 2020-04-10 11:04:03 +02:00 committed by GitHub
parent 40bd247ee9
commit 824e37026f
Failed to generate hash of commit
3 changed files with 64 additions and 2 deletions

27
.github/workflows/cron.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: "Hourly Build & Deploy to Netlify"
on:
schedule:
- cron: '0 * * * *'
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
run: nix-shell --run "yarn prod"
- 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: './build'
production-branch: 'master'
deploy-message: 'Deploy from GitHub Actions'
if: github.repository == 'NixOS/nixos-search'

29
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,29 @@
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
run: nix-shell --run "yarn prod"
- 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'

View file

@ -532,7 +532,11 @@ searchPage model =
searchPageResult model.showDetailsFor result.hits
R.Failure error ->
div [] [ text "Error!", pre [] [ text (Debug.toString error) ] ]
div []
[ text "Error!"
--, pre [] [ text (Debug.toString error) ]
]
]
@ -560,7 +564,9 @@ searchPageResultItem showDetailsFor item =
let
packageDetails =
if Just item.id == showDetailsFor then
[ td [ colspan 4 ] [ text "works!" ] ]
[ td [ colspan 4 ]
[]
]
else
[]