Skip to content

use UTC in the install_date; add install_commit to help tracking mast… #9

use UTC in the install_date; add install_commit to help tracking mast…

use UTC in the install_date; add install_commit to help tracking mast… #9

Workflow file for this run

name: CI (main and tags)
on:
push:
branches: [ "main" ]
tags: [ "v*" ]
permissions:
checks: write
contents: write
packages: write
pull-requests: read
jobs:
lint-test:
name: Lint and Test
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: extractions/setup-just@v1
- name: lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: test
run: just test
build-release:
name: Build and Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
- name: Release
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}