Skip to content

Added app version to status output #16

Added app version to status output

Added app version to status output #16

Workflow file for this run

name: Build and Release
# Trigger this workflow only when a tag starting with 'v' is pushed
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Build and Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.4'
- name: Build and Package
run: make build
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: bin/*.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}