-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actions use goreleaser nightly from source
Signed-off-by: Thomas Kosiewski <[email protected]>
- Loading branch information
Thomas Kosiewski
committed
Sep 7, 2023
1 parent
7113ddf
commit 46bcce8
Showing
1 changed file
with
12 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,11 +46,19 @@ jobs: | |
registry: ghcr.io | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: "goreleaser/[email protected]" | ||
with: | ||
version: nightly | ||
args: release --clean --timeout 60m | ||
- name: Setup GoReleaser nightly from source | ||
run: go install github.com/goreleaser/goreleaser@main | ||
- name: Run GoReleaser | ||
run: goreleaser release --clean --timeout 60m | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | ||
GORELEASER_CURRENT_TAG: ${{ steps.get_version.outputs.release_version }} | ||
GORELEASER_PREVIOUS_TAG: ${{ steps.get_version.outputs.previous_tag }} | ||
# - uses: "goreleaser/[email protected]" | ||
# with: | ||
# version: nightly | ||
# args: release --clean --timeout 60m | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | ||
# GORELEASER_CURRENT_TAG: ${{ steps.get_version.outputs.release_version }} | ||
# GORELEASER_PREVIOUS_TAG: ${{ steps.get_version.outputs.previous_tag }} |