Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"actions/artifactory-login": "1.0.0",
"actions/build-docker": "1.0.0",
"actions/push-docker": "1.0.0",
"actions/build-and-push-helm": "1.0.0",
"actions/build-and-push-helm": "2.0.0",
"actions/eslint": "1.0.0",
"actions/helm-lint": "1.0.0",
"actions/openapi-lint": "1.0.0",
Expand Down
12 changes: 12 additions & 0 deletions actions/build-and-push-helm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

## [2.0.0](https://github.com/MapColonies/shared-workflows/compare/build-and-push-helm-v1.0.0...build-and-push-helm-v2.0.0) (2025-04-22)


### ⚠ BREAKING CHANGES

* **workflows:** break workflows into actions ([#41](https://github.com/MapColonies/shared-workflows/issues/41))

### ♻️ 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-v1.0.0
uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v2.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-v1.0.0
uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v2.0.0
with:
context: ./infra/monitoring
domain: infra
Expand Down