Skip to content
This repository has been archived by the owner on Sep 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from Loquacity/ia-draft1-loquacity
Browse files Browse the repository at this point in the history
IA Guide - Initial Draft
  • Loading branch information
Lana Brindley authored Sep 20, 2020
2 parents 39779b3 + e6b614c commit fea0afb
Show file tree
Hide file tree
Showing 8 changed files with 1,143 additions and 0 deletions.
30 changes: 30 additions & 0 deletions ia-guide/.github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Use Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13.x
persist-credentials: false

- name: build game
run: |
go get github.com/tmedwards/tweego
export PATH=$PATH:$(go env GOPATH)/bin
tweego ia-cyoa.tw -o dist/index.html
- name: Deploy
uses: loquacity/actions-gh-pages@v2
env:
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./dist
CLEAN: true
Loading

0 comments on commit fea0afb

Please sign in to comment.