🎉 Build Binary #59
Workflow file for this run
This file contains hidden or 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 Binary | |
| on: | |
| create: | |
| tags: | |
| - v* | |
| jobs: | |
| build-linux: | |
| name: Build Linux | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23' | |
| id: go | |
| - name: Get version | |
| id: get_version | |
| run: echo "VERSION=${{ github.ref_name }}" >> $GITHUB_OUTPUT | |
| - name: Set up dependencies | |
| run: sudo apt-get update && sudo apt-get install libpcap-dev libdbus-1-dev libsystemd-dev gcc -y | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Get dependencies | |
| run: go mod download | |
| - name: Build On Linux | |
| run: | | |
| go build -o ./ksubdomain ./cmd/ksubdomain/ | |
| chmod +x ksubdomain | |
| zip KSubdomain-${{ steps.get_version.outputs.VERSION }}-linux-amd64.zip ksubdomain | |
| env: | |
| GOENABLE: 1 | |
| CGO_LDFLAGS: "-Wl,-static -L/usr/lib/x86_64-linux-gnu/libpcap.a -lpcap -Wl,-Bdynamic -ldbus-1 -lsystemd" | |
| - name: Build On Windows | |
| run: | | |
| go build -o ./ksubdomain.exe ./cmd/ksubdomain/ | |
| zip KSubdomain-${{ steps.get_version.outputs.VERSION }}-windows-amd64.zip ksubdomain.exe | |
| env: | |
| GOOS: windows | |
| GOENABLE: 1 | |
| - name: Release Linux and Windows | |
| uses: softprops/action-gh-release@master | |
| with: | |
| files: | | |
| KSubdomain-${{ steps.get_version.outputs.VERSION }}-linux-amd64.zip | |
| KSubdomain-${{ steps.get_version.outputs.VERSION }}-windows-amd64.zip | |
| fail_on_unmatched_files: true | |
| token: ${{ secrets.TOKEN }} | |
| append_body: true | |
| env: | |
| GITHUB_REPOSITORY: boy-hack/ksubdomain | |
| build-macos-amd64: | |
| name: Build macOS (amd64) | |
| runs-on: macos-13 | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23' | |
| id: go | |
| - name: Get version | |
| id: get_version | |
| run: echo "VERSION=${{ github.ref_name }}" >> $GITHUB_OUTPUT | |
| - name: Install zip | |
| run: brew install zip | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Get dependencies | |
| run: go mod download | |
| - name: Build On Darwin amd64 | |
| run: | | |
| go build -o ./ksubdomain ./cmd/ksubdomain/ | |
| chmod +x ksubdomain | |
| zip KSubdomain-${{ steps.get_version.outputs.VERSION }}-darwin-amd64.zip ksubdomain | |
| env: | |
| GOOS: darwin | |
| GOARCH: amd64 | |
| - name: Release macOS amd64 | |
| uses: softprops/action-gh-release@master | |
| with: | |
| files: KSubdomain-${{ steps.get_version.outputs.VERSION }}-darwin-amd64.zip | |
| fail_on_unmatched_files: true | |
| token: ${{ secrets.TOKEN }} | |
| append_body: true | |
| env: | |
| GITHUB_REPOSITORY: boy-hack/ksubdomain | |
| build-macos-arm64: | |
| name: Build macOS (arm64) | |
| runs-on: macos-14 | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23' | |
| id: go | |
| - name: Get version | |
| id: get_version | |
| run: echo "VERSION=${{ github.ref_name }}" >> $GITHUB_OUTPUT | |
| - name: Install zip | |
| run: brew install zip | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Get dependencies | |
| run: go mod download | |
| - name: Build On Darwin arm64 | |
| run: | | |
| go build -o ./ksubdomain ./cmd/ksubdomain/ | |
| chmod +x ksubdomain | |
| zip KSubdomain-${{ steps.get_version.outputs.VERSION }}-darwin-arm64.zip ksubdomain | |
| env: | |
| GOOS: darwin | |
| GOARCH: arm64 | |
| - name: Release macOS arm64 | |
| uses: softprops/action-gh-release@master | |
| with: | |
| files: KSubdomain-${{ steps.get_version.outputs.VERSION }}-darwin-arm64.zip | |
| fail_on_unmatched_files: true | |
| token: ${{ secrets.TOKEN }} | |
| append_body: true | |
| env: | |
| GITHUB_REPOSITORY: boy-hack/ksubdomain |