Build and Upload ndpresponder #7
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 and Upload ndpresponder | |
on: | |
repository_dispatch: | |
types: | |
- ndpresponder_update | |
schedule: | |
- cron: '0 0 * * *' # Daily check for updates | |
workflow_dispatch: | |
jobs: | |
build-and-upload: | |
name: Build, Upload ndpresponder, and Push Docker Image | |
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 }} | |
- name: Build Docker Image | |
run: | | |
docker build -t spiritlhl/ndpresponder_${{ matrix.architecture }}:latest . | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push Docker Image | |
run: | | |
docker push spiritlhl/ndpresponder_${{ matrix.architecture }}:latest |