Fix log messages in beta #9
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: Release binaries | |
| permissions: | |
| contents: write | |
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| releases-matrix: | |
| name: Release Go Binary | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| goos: [linux] | |
| goarch: [amd64,arm64] | |
| fail-fast: false | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| - name: Install xcaddy | |
| run: go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest | |
| - name: Build xcaddy with plugin | |
| run: xcaddy build --with github.com/cego/caddy-docker-api-auth@latest=./ --output caddy-docker-api-${{ matrix.goos }}-${{ matrix.goarch }} | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: caddy-docker-api-${{ matrix.goos }}-${{ matrix.goarch }} |