Skip to content

Commit ed10ffb

Browse files
authored
Merge pull request #19 from fluxcd/fix-release-ci
Use GitHub token in release workflow
2 parents 205857b + 061f569 commit ed10ffb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
- name: Push image
2525
uses: docker/build-push-action@v1
2626
with:
27-
username: ${{ secrets.DOCKER_FLUXCD_USERNAME }}
27+
username: ${{ secrets.DOCKER_FLUXCD_USER }}
2828
password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }}
2929
repository: fluxcd/helm-controller
3030
tag_with_ref: true
3131
- name: Create release
3232
id: create_release
3333
uses: actions/create-release@latest
3434
env:
35-
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
with:
3737
tag_name: ${{ github.ref }}
3838
release_name: ${{ github.ref }}
@@ -44,7 +44,7 @@ jobs:
4444
id: upload-release-asset
4545
uses: actions/upload-release-asset@v1
4646
env:
47-
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
47+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4848
with:
4949
upload_url: ${{ steps.create_release.outputs.upload_url }}
5050
asset_path: ./config/release/helm-controller.yaml

0 commit comments

Comments
 (0)