refactor, move lighthouseURL to conf, fix naming in build #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master", "dev" ] | |
workflow_dispatch: | |
env: | |
GOLANG_PROTOBUF_REGISTRATION_CONFLICT: ignore | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: clone repo | |
uses: actions/checkout@v3 | |
- name: download and install | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.1' | |
- name: install protoc (protobuf) | |
uses: arduino/setup-protoc@v3 | |
with: | |
version: "27.2" | |
include-pre-releases: false | |
- name: chmod +x | |
run: chmod +x ./scripts/install_deps && chmod +x ./scripts/build | |
- name: install dependencies | |
run: ./scripts/install_deps | |
- name: build linux | |
run: ./scripts/build linux amd64 dev | |
- name: build darwin | |
run: ./scripts/build darwin amd64 dev | |
- name: build windows | |
run: ./scripts/build windows amd64 dev |