Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

v1.0.3 with linux amd64 + arm64 build and extra debug logging run dir… #18

v1.0.3 with linux amd64 + arm64 build and extra debug logging run dir…

v1.0.3 with linux amd64 + arm64 build and extra debug logging run dir… #18

Workflow file for this run

name: build g2i
on:
push:
tags:
- g2i-*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.6
- name: Build
run: |
GOOS=linux GOARCH=amd64 go build -o g2i-linux-amd64 g2i.go
GOOS=linux GOARCH=arm64 go build -o g2i-linux-arm64 g2i.go
- uses: olegtarasov/[email protected]
id: tagName
with:
tagRegex: "g2i-(.*)"
- uses: ncipollo/release-action@v1
with:
artifacts: "g2i-*"
body: "Release ${{ steps.tagName.outputs.tag }}"