feat: add go releaser sentinel and directory service #1
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: Release Check | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
release-check: | |
name: Check release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: GoReleaser Directory Cross | |
run: make directory-release-dry-run-cross | |
env: | |
RELEASE: false | |
GITHUB_TOKEN: "" | |
- name: GoReleaser Directory | |
run: make directory-release-dry-run | |
env: | |
RELEASE: false | |
GITHUB_TOKEN: "" |