Update story.twee #83
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: Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
go-version: "^1.13.1" | |
- name: build game | |
run: | | |
go install github.com/tmedwards/tweego@master | |
export PATH=$PATH:$(go env GOPATH)/bin | |
tweego -f snowman-2 -o index.html twine_src | |
- name: Deploy to Pages | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: "./" | |