Skip to content

build(deps): Bump github.com/charmbracelet/lipgloss from 0.13.1 to 1.… #269

build(deps): Bump github.com/charmbracelet/lipgloss from 0.13.1 to 1.…

build(deps): Bump github.com/charmbracelet/lipgloss from 0.13.1 to 1.… #269

Workflow file for this run

name: build
on:
push:
branches:
- "main"
tags:
- "v*"
pull_request:
permissions:
contents: write
id-token: write
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: stable
- uses: cachix/install-nix-action@v30
with:
github_access_token: ${{ secrets.GH_PAT }}
- name: test
run: |
go mod tidy
go test -v ./...
go build -o timer .
- uses: sigstore/cosign-installer@v3.7.0
- name: setup-snapcraft
run: |
sudo apt-get update
sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft
- uses: goreleaser/goreleaser-action@v6
if: success() && startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser-pro
version: nightly
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
AUR_KEY: ${{ secrets.AUR_KEY }}
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}