Skip to content

Bump github.com/jedib0t/go-pretty/v6 from 6.4.7 to 6.4.8 (#84) #190

Bump github.com/jedib0t/go-pretty/v6 from 6.4.7 to 6.4.8 (#84)

Bump github.com/jedib0t/go-pretty/v6 from 6.4.7 to 6.4.8 (#84) #190

Workflow file for this run

name: Build `tfx` - Cross Compile
on:
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
# - name: Lint
# uses: golangci/golangci-lint-action@v2
# with:
# version: v1.32.2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.21.0
- name: Install gox
run: |
go get github.com/mitchellh/gox
go install github.com/mitchellh/gox
- name: Install zip
run: |
sudo apt-get update -q
sudo apt-get install zip -q
- name: Cross compile
run: |
gox \
-os="linux darwin windows" \
-ldflags="-X 'github.com/straubt1/tfx/version.Build=${{ github.sha }}' -X 'github.com/straubt1/tfx/version.Date=$(date)' -X 'github.com/straubt1/tfx/version.BuiltBy=github'" \
-arch="amd64 arm64" \
-output "./pkg/{{.OS}}_{{.Arch}}/tfx" \
.
- name: Print version
run: ./pkg/linux_amd64/tfx --version
# Package all binaries together
- uses: actions/upload-artifact@v2
with:
name: tfx-artifacts
path: ./pkg/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}