Working: Updates for Codebase for Live Server (Makefile, Indexer, Sentinel) #129
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 Check Sentinel | |
| 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 Sentinel Cross | |
| run: make sentinel-release-dry-run-cross | |
| env: | |
| RELEASE: false | |
| GITHUB_TOKEN: "" | |
| - name: GoReleaser Sentinel | |
| run: make sentinel-release-dry-run | |
| env: | |
| RELEASE: false | |
| GITHUB_TOKEN: "" |