Skip to content

Build Binary

Build Binary #1

Workflow file for this run

name: Build Binary
on:
workflow_dispatch: # Only manual trigger
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24' # Update to Go 1.24
- name: Build Binary
run: |
make build
- name: Upload Binary as Artifact
uses: actions/upload-artifact@v4
with:
name: dex-binary-${{ github.ref_name }}-${{ github.sha }}
path: ./bin/dex # Adjust the path to where the binary is built