Remove duplicate line in CV #916
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 and deploy | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21" | |
- name: Pull down config.org | |
run: curl https://raw.githubusercontent.com/glacials/dotfiles/main/dot_config/emacs/config.org > src/warm/config.org | |
- name: Test & build Winter | |
run: | | |
go install twos.dev/winter@latest | |
- name: Build twos.dev | |
run: | | |
winter clean | |
winter build | |
- name: Sanity check | |
run: test -f dist/index.html | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: dist |