Skip to content

Commit

Permalink
Modify/release workflow (#29)
Browse files Browse the repository at this point in the history
* remove redundant path from helm release workflow

* fix checkout issue in the release ci pipelines
  • Loading branch information
hoptical authored Dec 6, 2023
1 parent 152882e commit cca635c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
env:
OPERATOR_SDK_VERSION: v1.31.0
steps:
- uses: actions/checkout@v3
- name: Install operator-sdk
run: |
curl -L https://github.com/operator-framework/operator-sdk/releases/download/${OPERATOR_SDK_VERSION}/operator-sdk_linux_amd64 -o /usr/local/bin/operator-sdk
Expand All @@ -57,6 +58,7 @@ jobs:
needs: build-push-docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: helmify
run: make helm
- name: Chart | Push
Expand All @@ -74,6 +76,8 @@ jobs:
needs: build-push-docker
name: release
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: release
run: gh release create ${{ github.ref_name }} --generate-notes --verify-tag

0 comments on commit cca635c

Please sign in to comment.