Skip to content

Commit

Permalink
ci(repo): use GITHUB_TOKEN instead of REPO_TOKEN (#40)
Browse files Browse the repository at this point in the history
fix: use `GITHUB_TOKEN` instead of `REPO_TOKEN`
  • Loading branch information
Jurshsmith authored Jul 5, 2024
1 parent 2d29478 commit bdbde8d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/helm_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ name: Build and publish Helm Chart

on:
push:
branches:
- main
paths:
- 'helm/fuel-core-nats/Chart.yaml'
branches: [main]
paths: [helm/fuel-core-nats/Chart.yaml]

permissions:
contents: read
Expand All @@ -31,6 +29,6 @@ jobs:
useOCIRegistry: true
registry-url: oci://ghcr.io/fuellabs/helmcharts
username: ${{ github.repository_owner }}
access-token: ${{ secrets.REPO_TOKEN }}
access-token: ${{ secrets.GITHUB_TOKEN }}
force: true
chart-folder: ./helm/fuel-core-nats

0 comments on commit bdbde8d

Please sign in to comment.