File tree Expand file tree Collapse file tree 3 files changed +32
-41
lines changed Expand file tree Collapse file tree 3 files changed +32
-41
lines changed Original file line number Diff line number Diff line change 1616 command : manifest
1717 token : ${{secrets.GITHUB_TOKEN}}
1818 default-branch : main
19+ outputs :
20+ release_created : ${{ steps.release.outputs.release_created }}
21+ release_tag_name : ${{ steps.release.outputs.tag_name }}
22+
23+ release-assets :
24+ needs : release-please
25+ runs-on : ubuntu-latest
26+ if : ${{ needs.release-please.outputs.release_created }}
27+ steps :
28+ - name : Checkout
29+ uses : actions/checkout@v2
30+ with :
31+ ref : ${{ needs.release-please.outputs.release_tag_name }}
32+
33+ - name : Setup go
34+ uses : actions/setup-go@v3
35+ with :
36+ go-version : ' 1.17.11'
37+ - run : |
38+ make update-flagd
39+ go mod tidy
40+ make controller-gen
41+ IMG=ghcr.io/open-feature/open-feature-operator:${{ needs.release-please.outputs.release_tag_name }} make release-manifests
42+
43+ - name : Release
44+ uses : softprops/action-gh-release@v1
45+ with :
46+ tag_name : ${{ needs.release-please.outputs.release_tag_name }}
47+ files : |
48+ config/webhook/certificate.yaml
49+ config/rendered/release.yaml
50+ config/samples/end-to-end.yaml
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments