fix: only show building websites message when required (#858) #134
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: Publish | |
| on: | |
| push: | |
| # run only against tags | |
| tags: | |
| - '*' | |
| env: | |
| FATHOM_SITE: ${{ vars.FATHOM_SITE }} | |
| jobs: | |
| publish: | |
| name: GoReleaser | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.22 | |
| - uses: goreleaser/goreleaser-action@v3 | |
| with: | |
| distribution: goreleaser | |
| version: 1.18 | |
| args: release --rm-dist | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.NITRIC_BOT_TOKEN }} |