Skip to content

Bump github.com/spf13/cast from 1.5.0 to 1.5.1 #28

Bump github.com/spf13/cast from 1.5.0 to 1.5.1

Bump github.com/spf13/cast from 1.5.0 to 1.5.1 #28

Workflow file for this run

name: Build Rollappd
on: ["push"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64]
targetos: [darwin, linux]
include:
- targetos: darwin
arch: arm64
name: rollapp ${{ matrix.arch }} for ${{ matrix.targetos }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.1
with:
go-version: "^1.19"
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}
- name: Compile rollappd
run: |
go mod download
cd cmd/rollappd
go build .
- uses: actions/upload-artifact@v3
with:
name: rollappd ${{ matrix.targetos }} ${{ matrix.arch }}
path: cmd/rollappd/rollappd