Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
".": "6.0.0",
"actions/build-and-push-helm": "1.0.0",
"actions/helm-lint": "1.0.0",
"actions/eslint": "1.0.0",
"actions/push-docker": "1.0.0",
Expand Down
17 changes: 17 additions & 0 deletions actions/build-and-push-helm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
4 changes: 2 additions & 2 deletions actions/build-and-push-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi

```yaml
- name: Artifactory Login
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v0.0.0
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0
with:
registry: ${{ secrets.ACR_URL }}
username: ${{ secrets.ACR_PUSH_USER }}
password: ${{ secrets.ACR_PUSH_TOKEN }}

- name: Build and Push Helm Chart
uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v0.0.0
uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v1.0.0
with:
context: ./infra/monitoring
domain: infra
Expand Down