Build Geth for Windows #1
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 Geth for Windows | |
on: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build-all: | |
name: Build all executables | |
runs-on: windows-latest | |
steps: | |
- name: Checkout etclabscore/core-geth | |
uses: actions/checkout@v3 | |
- name: Set up Go 1.21 | |
id: go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ^1.21 | |
- name: Build all packages | |
id: build-packages | |
run: make all |