Update github.com/muesli/termenv digest to 8c990cd #922
Workflow file for this run
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: goreleaser-dry-run | |
on: | |
pull_request: | |
jobs: | |
dry-run: | |
runs-on: depot-ubuntu-22.04-8 | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Go Init | |
uses: ./.github/actions/go_init | |
- run: go run main.go --version | |
- name: Run GoReleaser (dry run) | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: release --clean --snapshot --skip publish,sign | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |