diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000000000..876507f16b1d7 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,33 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + arch: + - amd64 + - arm64 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v2 + with: + go-version: "1.23" + - run: | + cp vendor.mod go.mod && cp vendor.sum go.sum + go build -o bin/dockerd-${{ matrix.arch }} ./cmd/dockerd + env: + GOOS: darwin + GOARCH: ${{ matrix.arch }} + - uses: actions/upload-artifact@v3 + with: + name: ${{ matrix.arch }} + path: bin/* + - uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: bin/* + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}