Skip to content

Commit cca635c

Browse files
authored
Modify/release workflow (#29)
* remove redundant path from helm release workflow * fix checkout issue in the release ci pipelines
1 parent 152882e commit cca635c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build-release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
env:
4141
OPERATOR_SDK_VERSION: v1.31.0
4242
steps:
43+
- uses: actions/checkout@v3
4344
- name: Install operator-sdk
4445
run: |
4546
curl -L https://github.com/operator-framework/operator-sdk/releases/download/${OPERATOR_SDK_VERSION}/operator-sdk_linux_amd64 -o /usr/local/bin/operator-sdk
@@ -57,6 +58,7 @@ jobs:
5758
needs: build-push-docker
5859
runs-on: ubuntu-latest
5960
steps:
61+
- uses: actions/checkout@v3
6062
- name: helmify
6163
run: make helm
6264
- name: Chart | Push
@@ -74,6 +76,8 @@ jobs:
7476
needs: build-push-docker
7577
name: release
7678
runs-on: ubuntu-latest
79+
env:
80+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7781
steps:
7882
- name: release
7983
run: gh release create ${{ github.ref_name }} --generate-notes --verify-tag

0 commit comments

Comments
 (0)