chore(deps): update image golang to ff45d87 (#92) #21
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
# GitHub Actions workflow to release a Go project using GoReleaser. | |
# Releases are published from tags matching "v*.*.*". | |
name: "Release" | |
on: | |
push: | |
tags: [ "v*.*.*" ] | |
jobs: | |
release: | |
name: "Release" | |
uses: HyperaDev/actions/.github/workflows/go-release.yml@main | |
with: | |
docker_enabled: true | |
secrets: | |
DOCKERHUB_USERNAME: "${{ secrets.DOCKERHUB_USERNAME }}" | |
DOCKERHUB_TOKEN: "${{ secrets.DOCKERHUB_TOKEN }}" | |
GITHUB_RELEASE_TOKEN: "${{ secrets.BOT_GITHUB_TOKEN }}" |