Bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.13.0 #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build Check | |
on: | |
push: | |
branches-ignore: | |
- master | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
permissions: | |
contents: write | |
jobs: | |
build-check: | |
strategy: | |
matrix: | |
go-version: [1.22.0] | |
os: ['ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set Version | |
id: version | |
run: echo "version=$(cat ./VERSION)" >> $GITHUB_OUTPUT | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install Dependencies | |
run: go get . | |
- name: Make Artifact Directory | |
run: mkdir -p ./bin | |
# Compile Binaries | |
- name: Build Linux ARM64 Artifact | |
run: GOOS=linux GOOARCH=arm64 go build -o ./bin/s3packer-linux-arm64 . | |
- name: Build Linux AMD64 Artifact | |
run: GOOS=linux GOOARCH=amd64 go build -o ./bin/s3packer-linux-amd64 . | |
- name: Build MacOS ARM64 Artifact | |
run: GOOS=darwin GOOARCH=arm64 go build -o ./bin/s3packer-mac-arm64 . | |
- name: Build MacOS AMD64 Artifact | |
run: GOOS=darwin GOOARCH=amd64 go build -o ./bin/s3packer-mac-amd64 . |