Dockerfile: Bump Go Version #28
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: Release CI | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
# Setup node to generate CSS Styles | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
check-latest: true | |
- run: yarn install | |
- run: yarn release | |
# Setup Go to Compile Binary | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.17" | |
- run: make build | |
# Upload generated artifacts. | |
- uses: marvinpinto/action-automatic-releases@latest | |
with: | |
prerelease: false | |
repo_token: ${{ secrets.BLOG }} | |
automatic_release_tag: "latest" | |
title: "Latest Release" | |
files: | | |
LICENSE | |
dist/* |