Skip to content

Fixes to connections #62

Fixes to connections

Fixes to connections #62

Workflow file for this run

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: "./"