Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Jul 17, 2024
1 parent 9a00d9b commit 2e5efaa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
SHA=${{ github.event.pull_request.head.sha }}
export SHORT_SHA=dev-${SHA::7}
export LOCAL_ARTIFACT_MIRROR_IMAGE=registry.staging.replicated.com/library/embedded-cluster-local-artifact-mirror
export REGISTRY=registry.staging.replicated.com
export USERNAME=${{ secrets.REGISTRY_USERNAME_STAGING }}
export PASSWORD=${{ secrets.REGISTRY_PASSWORD_STAGING }}
make build-and-push-local-artifact-mirror-image VERSION="${SHORT_SHA}"
make build-and-push-local-artifact-mirror-image VERSION="${SHORT_SHA}-previous-k0s"
make build-and-push-local-artifact-mirror-image VERSION="${SHORT_SHA}-upgrade"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:

- name: Build and push local-artifact-mirror image (production)
run: |
export REGISTRY=registry.replicated.com
export USERNAME=${{ secrets.REGISTRY_USERNAME_PRODUCTION }}
export PASSWORD=${{ secrets.REGISTRY_PASSWORD_PRODUCTION }}
make build-and-push-local-artifact-mirror-image VERSION=$TAG_NAME
- name: Login to Registry
Expand All @@ -50,6 +53,9 @@ jobs:
- name: Build and push local-artifact-mirror image (staging)
run: |
export LOCAL_ARTIFACT_MIRROR_IMAGE=registry.staging.replicated.com/library/embedded-cluster-local-artifact-mirror
export REGISTRY=registry.staging.replicated.com
export USERNAME=${{ secrets.REGISTRY_USERNAME_STAGING }}
export PASSWORD=${{ secrets.REGISTRY_PASSWORD_STAGING }}
make build-and-push-local-artifact-mirror-image VERSION=$TAG_NAME
- name: Build linux-amd64
Expand Down

0 comments on commit 2e5efaa

Please sign in to comment.