Skip to content

Commit

Permalink
chore: use correct syntax for accessing environment vars for blob upl…
Browse files Browse the repository at this point in the history
…oad (#9)
  • Loading branch information
bastiandoetsch authored Mar 3, 2022
1 parent ef9709f commit 5f100d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ before:

blobs:
- provider: S3
region: ${{ env.AWS_REGION }}
bucket: ${{ env.AWS_S3_BUCKET_NAME }}
region: ${{ .Env.AWS_REGION }}
bucket: ${{ .Env.AWS_S3_BUCKET_NAME }}
ids:
- "{{ .ProjectName }}"
extra_files:
Expand Down

0 comments on commit 5f100d5

Please sign in to comment.