1
1
mirror of https://github.com/nmattia/niv.git synced 2024-11-08 20:12:43 +03:00
niv/.github/workflows/netlify.yml

18 lines
462 B
YAML
Raw Normal View History

2019-12-08 17:13:53 +03:00
name: "netlify deploy"
on:
push:
branches:
- master
jobs:
netlify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2019-12-08 17:13:53 +03:00
- name: "deploy to netlify"
2020-08-29 10:42:20 +03:00
uses: netlify/actions/cli@6c34c3fcafc69ac2e1d6dbf226560329c6dfc51b
with:
args: deploy --dir=./site --message="$GITHUB_SHA" --prod
2019-12-08 17:13:53 +03:00
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}