Skip to content

fix: console input raw string to interpreted string #31

fix: console input raw string to interpreted string

fix: console input raw string to interpreted string #31

Workflow file for this run

name: Build Binaries with GoReleaser
on:
push:
tags:
- "v*.*.*"
env:
GO_VERSION: "1.21"
jobs:
build:
name: GoReleaser build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ github.workspace }}/go/src/github.com/lenye/pmsg
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
path: go/src/github.com/lenye/pmsg
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
workdir: go/src/github.com/lenye/pmsg
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}