Skip to content

Update build.yml

Update build.yml #6

Workflow file for this run

name: Build EIP1559-sender
permissions:
contents: write
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
exclude:
- goarch: arm64
goos: windows
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
if [ "${{ matrix.goos }}" = "windows" ]; then
go build -v -o EIP1559-sender-${{ matrix.goos }}-${{ matrix.goarch }}.exe
else
go build -v -o EIP1559-sender-${{ matrix.goos }}-${{ matrix.goarch }}
fi
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: EIP1559-sender-${{ matrix.goos }}-${{ matrix.goarch }}
path: EIP1559-sender-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.goos == 'windows' && '.exe' || '' }}
- name: Release
uses: softprops/action-gh-release@v1
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
prerelease: ${{ !startsWith(github.ref, 'refs/tags/v') || contains(github.ref, '-pre') }}
files: EIP1559-sender-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.goos == 'windows' && '.exe' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}