1
1
mirror of https://github.com/nmattia/niv.git synced 2024-11-08 20:12:43 +03:00
niv/.github/workflows/netlify.yml
Nikola Knezevic 768210efbe Remove custom github actions
This change removes custom github actions and switches to using
install-nix-action.
2022-03-21 14:01:51 +01:00

18 lines
462 B
YAML

name: "netlify deploy"
on:
push:
branches:
- master
jobs:
netlify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "deploy to netlify"
uses: netlify/actions/cli@6c34c3fcafc69ac2e1d6dbf226560329c6dfc51b
with:
args: deploy --dir=./site --message="$GITHUB_SHA" --prod
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}