Skip to content

Commit 205c8df

Browse files
authored
feat: update releases workflow to update crds docs (#179)
When we cut a new release we need to call crds with the new tag. If we don't then crds won't index the new tag.
1 parent 9767434 commit 205c8df

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
- name: Build Release Artifacts
2626
run: RELEASE_TAG="${{ github.ref_name }}" make release
2727

28+
- name: Update crds docs
29+
run: |
30+
echo "Release Tag: ${{ github.ref_name }}"
31+
curl -sSL https://doc.crds.dev/github.com/oracle/cluster-api-provider-oci@${{ github.ref_name }}
32+
2833
- uses: actions/upload-artifact@v2
2934
with:
3035
name: CAPOCI Artifacts

0 commit comments

Comments
 (0)