Skip to content

Commit

Permalink
Merge pull request #208 from salasberryfin/fix-cr-token-release-action
Browse files Browse the repository at this point in the history
chore: add cr_token env variable to helm release action
  • Loading branch information
richardcase committed Oct 18, 2023
2 parents ccfaeea + 2ad3253 commit bf9e31a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,19 +188,15 @@ jobs:
images: [
{
"image":"${{ needs.build-prod.outputs.multiarch_image }}",
"digest":"${{ needs.build-prod.outputs.multiarch_digest }}"
},
{
"image":"${{ needs.build-prod.outputs.amd64_image }}",
"digest":"${{ needs.build-prod.outputs.amd64_digest }}"
},
{
"image":"${{ needs.build-prod.outputs.arm64_image }}",
"digest":"${{ needs.build-prod.outputs.arm64_digest }}"
},
{
"image":"${{ needs.build-prod.outputs.s390x_image }}",
"digest":"${{ needs.build-prod.outputs.s390x_digest }}"
}
]
env:
Expand Down Expand Up @@ -266,12 +262,14 @@ jobs:

release:
name: Create helm release
needs: [prod-provenance]
runs-on: ubuntu-latest
env:
TAG: ${{ github.ref_name }}
PROD_REGISTRY: ${{ secrets.REGISTRY_ENDPOINT }}
PROD_ORG: rancher-sandbox
RELEASE_DIR: .cr-release-packages
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit bf9e31a

Please sign in to comment.