File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 39
39
run : |
40
40
docker tag ghcr.io/spiffe/spire-controller-manager:devel ghcr.io/spiffe/spire-controller-manager:nightly
41
41
(cd demo; ./test.sh)
42
- publish-image :
42
+ publish-image-and-release :
43
43
needs : [test-image]
44
44
runs-on : ubuntu-latest
45
45
steps :
64
64
password : ${{ secrets.GITHUB_TOKEN }}
65
65
- name : Push image
66
66
run : ./.github/workflows/scripts/push-images.sh "${GITHUB_REF#refs/tags/v}"
67
+ - name : Create Release
68
+ env :
69
+ # GH_REPO is required for older releases of `gh`. Until we're
70
+ # reasonably confident that that the gh release is new enough,
71
+ # set GH_REPO to the repository to create the release in.
72
+ #
73
+ # See https://github.com/cli/cli/issues/3556
74
+ GH_REPO : ${{ github.repository }}
75
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
76
+ # Create the release using the version number as the title
77
+ run : gh release create "${GITHUB_REF#refs/tags/}" --title "${GITHUB_REF#refs/tags/}"
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ 0.1.0] - 2022-05-16
4
+
5
+ First official release! The SPIRE controller manager supports:
6
+ - Registering workloads using the ClusterSPIFFEID custom resource
7
+ - Establishing federation relationships with foreign trust domains using the ClusterFederatedTrustDomain resource
8
+ - Full management of the Validating Admission Controller webhook credentials
You can’t perform that action at this time.
0 commit comments