Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
ci: set up build basics for linux amd64 (#5)
Browse files Browse the repository at this point in the history
* ci: set up build basics for linux amd64

* ci: add darwin amd64

* feat: version awareness

* ci: set version number

* ci: create release

* ci: attach to tag

* ci: attach to tag

* ci: attach to tag

* ci: job permissions

* ci: artifacts path

* ci: artifacts path

* ci: artifacts path

* ci: artifacts path

* ci: artifacts path

* ci: artifacts path

* ci: artifacts path

* ci: artifacts path
  • Loading branch information
mcataford authored Apr 27, 2023
1 parent 32c7cb8 commit 03a0440
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Release

on:
push:
tags:
- 'v*'

permissions:
contents: write

jobs:
build-releases:
name: Build release artifacts
runs-on: ubuntu-latest
strategy:
matrix:
os: [linux, darwin]
arch: [amd64]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.19.0'
- name: get tag
id: get_tag
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/v}
- name: Build for arch
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
VERSION: ${{ steps.get_tag.outputs.tag }}
run: go build -ldflags "-X main.Version=$(echo $VERSION)"
- name: Stash
uses: actions/upload-artifact@v3
with:
name: doggo-${{ matrix.os }}-${{ matrix.arch }}
path: ./doggo
publish:
name: Publish release
runs-on: ubuntu-latest
needs: build-releases
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Retrieve artifacts
uses: actions/download-artifact@v3
with:
path: release-builds
- name: Log artifact paths
run: |
pwd
ls -R
tar -czvf ./release-builds/doggo-darwin-amd64.tar.gz ./release-builds/doggo-darwin-amd64/doggo
tar -czvf ./release-builds/doggo-linux-amd64.tar.gz ./release-builds/doggo-linux-amd64/doggo
- name: Publish release
uses: softprops/action-gh-release@v1
with:
files: |
./release-builds/*.tar.gz
3 changes: 3 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
"strings"
)

var Version string

type Span struct {
OrgId int `json:"org_id"`
TraceId string `json:"trace_id"`
Expand Down Expand Up @@ -177,6 +179,7 @@ func parseArgs(args []string) Config {
}

func main() {
log.Println("Doggo version: ", Version)
config := parseArgs(os.Args)

fullTrace := parseTraceJsonFromFile(config.tracePath)
Expand Down

0 comments on commit 03a0440

Please sign in to comment.