Skip to content

Commit

Permalink
fix(ci): update goreleaser env var references
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebAlbers committed Feb 9, 2023
1 parent 3d017c7 commit a266dad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-and-release.yml
Expand Up @@ -27,3 +27,5 @@ jobs:
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
HOMEBREW_COMMIT_AUTHOR_NAME: ${{ secrets.HOMEBREW_COMMIT_AUTHOR_NAME }}
HOMEBREW_COMMIT_EMAIL: ${{ secrets.HOMEBREW_COMMIT_EMAIL }}
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Expand Up @@ -38,8 +38,8 @@ brews:
name: homebrew-tap
branch: copywrite
commit_author:
name: ${{ secrets.HOMEBREW_COMMIT_AUTHOR_NAME }}
email: ${{ secrets.HOMEBREW_COMMIT_EMAIL }}
name: '{{ .Env.HOMEBREW_COMMIT_AUTHOR_NAME }}'
email: '{{ .Env.HOMEBREW_COMMIT_EMAIL }}'
homepage: 'https://github.com/hashicorp/copywrite'
description: 'copywrite -- utilities for managing copyright headers and license files for GitHub repos'
license: 'MPL-2.0'
Expand Down

0 comments on commit a266dad

Please sign in to comment.