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/push-docker": "1.0.0",
"actions/artifactory-login": "1.0.0",
"actions/update-artifacts-file": "1.0.0",
"actions/build-docker": "1.0.0",
Expand Down
17 changes: 17 additions & 0 deletions actions/push-docker/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))
6 changes: 3 additions & 3 deletions actions/push-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ jobs:
uses: actions/checkout@v4

- name: Login to Registry
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 Docker Image
id: build
uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v0.0.0
uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v1.0.0
with:
context: ./test
scope: infra
registry: ${{ secrets.ACR_URL }}

- name: Push Docker Image
uses: MapColonies/shared-workflows/actions/push-docker@push-docker-v0.0.0
uses: MapColonies/shared-workflows/actions/push-docker@push-docker-v1.0.0
with:
image_name: $DOCKER_IMAGE_NAME
```
Expand Down