mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
site deploy action
run only main branch Signed-off-by: Avelino <avelinorun@gmail.com>
This commit is contained in:
parent
340743b823
commit
811dd9076e
27
.github/workflows/site-deploy.yaml
vendored
Normal file
27
.github/workflows/site-deploy.yaml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: site-deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Make and Deploy site
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: netlify
|
||||||
|
container: golang:latest
|
||||||
|
needs: tests
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@1.0.0
|
||||||
|
- name: Get dependencies
|
||||||
|
run: go get -v -t -d ./...
|
||||||
|
- name: Make awesome-go.com
|
||||||
|
run: go run make_site.go scripts.go
|
||||||
|
- name: deploy awesome-go.com
|
||||||
|
uses: jsmrcaga/action-netlify-deploy@v1.1.0
|
||||||
|
with:
|
||||||
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||||
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||||
|
NETLIFY_DEPLOY_TO_PROD: true
|
||||||
|
build_directory: tmpl
|
Loading…
Reference in New Issue
Block a user