Skip to content

feat: epoch get outputs raw streams, drop gzip wrapping #32

feat: epoch get outputs raw streams, drop gzip wrapping

feat: epoch get outputs raw streams, drop gzip wrapping #32

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- 'deploy/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Download dependencies
run: go mod download
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: make build
- name: Upload binary artifact
uses: actions/upload-artifact@v6
with:
name: epoch-${{ matrix.goos }}-${{ matrix.goarch }}
path: epoch-${{ matrix.goos }}-${{ matrix.goarch }}
retention-days: 30