Update stringsvc.md: change go get to go install & fix example path (… #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: push | |
jobs: | |
Publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@master | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.x | |
- name: Install rendering tool | |
run: go install github.com/peterbourgon/[email protected] | |
- name: Render | |
run: make | |
- name: Show results | |
run: tree output | |
- name: Deploy | |
if: github.ref == 'refs/heads/source' | |
uses: JamesIves/[email protected] | |
with: | |
branch: master | |
folder: output | |
commit-message: Deploying site |