Skip to content

bsc docker image on ghcr.io #175

bsc docker image on ghcr.io

bsc docker image on ghcr.io #175

Workflow file for this run

name: Build and lint the source code
on:
push:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: bridges/stellar-evm
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Build
run: |
export PATH=/home/runner/go/bin:$PATH
export GIT_COMMIT=$(git rev-list -1 HEAD)
go build -ldflags "-X main.GitCommit=$GIT_COMMIT" .
env:
GO111MODULE: on