mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
chore: goreleaser workflow fix (#5298)
Use the automatically provided GITHUB_TOKEN secret. Currently only has the default permissions which should let it read the tag as needed. Commented permissions would allow it to also automatically write a github release, but will see if it works without that for now for minimimum change.
This commit is contained in:
parent
488121f669
commit
e2301387eb
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -1,5 +1,10 @@
|
||||
name: Release
|
||||
|
||||
# Uncomment the following to let goreleaser automatically
|
||||
# create a GitHub release when a tag is pushed.
|
||||
# permissions:
|
||||
# contents: write
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
@ -35,7 +40,7 @@ jobs:
|
||||
run: |
|
||||
make release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VERSION: ${{ steps.prepare.outputs.tag_name }}
|
||||
DOCKER_USERNAME: ${{ secrets.DOCKERHUB }}
|
||||
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_KEY }}
|
||||
|
Loading…
Reference in New Issue
Block a user