From b1289b1e69187b8b3e0effd8f40b106234b63902 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 22 Apr 2025 13:51:43 +0000 Subject: [PATCH 1/2] chore(master): release update-artifacts-file 1.0.0 --- .release-please-manifest.json | 3 ++- actions/update-artifacts-file/CHANGELOG.md | 17 +++++++++++++++++ actions/update-artifacts-file/README.md | 4 ++-- 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 actions/update-artifacts-file/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 70fbe252..50c6ac73 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,4 @@ { - ".": "6.0.0" + ".": "6.0.0", + "actions/update-artifacts-file": "1.0.0" } diff --git a/actions/update-artifacts-file/CHANGELOG.md b/actions/update-artifacts-file/CHANGELOG.md new file mode 100644 index 00000000..28e98a5e --- /dev/null +++ b/actions/update-artifacts-file/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +## 1.0.0 (2025-04-22) + + +### ⚠ BREAKING CHANGES + +* **workflows:** break workflows into actions ([#41](https://github.com/MapColonies/shared-workflows/issues/41)) + +### 🐛 Bug Fixes + +* release please cleanup ([#52](https://github.com/MapColonies/shared-workflows/issues/52)) ([e0f1058](https://github.com/MapColonies/shared-workflows/commit/e0f1058fb4bee4f89835709972e8ad6c8a3382f6)) + + +### ♻️ Code Refactoring + +* **workflows:** break workflows into actions ([#41](https://github.com/MapColonies/shared-workflows/issues/41)) ([0a98534](https://github.com/MapColonies/shared-workflows/commit/0a9853421116d3bcc4cae4681977857cbc518e51)) diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index f9ca8338..55c1b470 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -32,11 +32,11 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and ```yaml - name: Update artifacts.json - uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v0.0.0 + uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v1.0.0 with: scope: infra artifact_name: "sftpgo" - artifact_tag: "v2.0.2" + artifact_tag: "v1.0.0" registry: ${{ secrets.ACR_URL }} github_token: ${{ secrets.GH_PAT }} ``` From 7a34772f27ae2cc18d36e31cc00bdcdaed080863 Mon Sep 17 00:00:00 2001 From: Netanel Cohen <34451523+netanelC@users.noreply.github.com> Date: Tue, 22 Apr 2025 17:05:49 +0300 Subject: [PATCH 2/2] Update README.md --- actions/update-artifacts-file/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index 55c1b470..69b02cab 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -36,7 +36,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and with: scope: infra artifact_name: "sftpgo" - artifact_tag: "v1.0.0" + artifact_tag: "v2.0.2" registry: ${{ secrets.ACR_URL }} github_token: ${{ secrets.GH_PAT }} ```