Skip to content

Commit

Permalink
Add Auto Build
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritLHLS committed Jan 23, 2025
1 parent 281730b commit 2684953
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Upload ndpresponder

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build-and-upload:
name: Build and Upload ndpresponder
runs-on: ubuntu-latest
strategy:
matrix:
architecture: [amd64, arm64] # x86 corresponds to amd64, aarch64 corresponds to arm64
steps:
- name: Checkout ndpresponder repository
uses: actions/checkout@v3
with:
repository: yoursunny/ndpresponder

- name: Set up Go 1.23
uses: actions/setup-go@v4
with:
go-version: 1.23

- name: Build ndpresponder
run: |
mkdir -p build
GOARCH=${{ matrix.architecture }} GOOS=linux go build -o build/ndpresponder .
- name: Upload to GitHub Releases
uses: softprops/action-gh-release@v1
with:
files: build/ndpresponder
tag_name: ${{ matrix.architecture == 'amd64' && 'ndpresponder_x86' || 'ndpresponder_aarch64' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2684953

Please sign in to comment.