forked from kubernetes-sigs/external-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alexander Soelberg Heidarsson
committed
Mar 2, 2023
1 parent
fd8d757
commit 4a0bde9
Showing
84 changed files
with
1,088 additions
and
1,171 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,9 @@ on: | |
permissions: {} | ||
jobs: | ||
release: | ||
|
||
permissions: | ||
contents: write # to push chart release and create a release (helm/chart-releaser-action) | ||
contents: write # to push chart release and create a release (helm/chart-releaser-action) | ||
|
||
if: github.repository == 'kubernetes-sigs/external-dns' | ||
runs-on: ubuntu-latest | ||
|
@@ -33,15 +34,15 @@ jobs: | |
- name: Get changelog entry | ||
id: changelog_reader | ||
uses: mindsers/changelog-reader-action@b97ce03a10d9bdbb07beb491c76a5a01d78cd3ef | ||
uses: mindsers/changelog-reader-action@5bfb30f7871d5c4cde50cd897314f37578043394 | ||
with: | ||
path: charts/external-dns/CHANGELOG.md | ||
version: "v${{ steps.chart_version.outputs.version }}" | ||
|
||
- name: Create release notes | ||
run: | | ||
set -euo pipefail | ||
cat <<"EOF" > charts/external-dns/RELEASE.md | ||
cat <<"EOF" > charts/external-dns/_release-notes.md | ||
${{ steps.changelog_reader.outputs.changes }} | ||
EOF | ||
|
@@ -51,15 +52,14 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Set-up Helm | ||
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 | ||
uses: azure/setup-helm@f382f75448129b3be48f8121b9857be18d815a82 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
version: latest | ||
|
||
- name: Run chart-releaser | ||
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 | ||
uses: helm/chart-releaser-action@98bccfd32b0f76149d188912ac8e45ddd3f8695f | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
CR_RELEASE_NAME_TEMPLATE: "external-dns-helm-chart-{{ .Version }}" | ||
CR_RELEASE_NOTES_FILE: RELEASE.md | ||
CR_MAKE_RELEASE_LATEST: false | ||
CR_RELEASE_NOTES_FILE: _release-notes.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.