Update .gitea/workflows/build-and-push.yaml
All checks were successful
Build and Push Container Image / build-and-push (push) Successful in 11s

This commit is contained in:
2026-05-11 08:07:42 +00:00
parent 1bdda778f8
commit 1cadb8ad04

View File

@@ -93,8 +93,17 @@ jobs:
--username "${REGISTRY_USERNAME}" \ --username "${REGISTRY_USERNAME}" \
--password-stdin --password-stdin
# TODO: Re-enable push after the Gitea registry /v2 ingress route is available. - name: Preview image push
# - name: Push image run: |
# run: | echo "TODO: Re-enable push after the Gitea registry /v2 ingress route is available."
# docker save "${{ steps.build.outputs.image }}" -o image.tar echo "This step is intentionally non-mutating for the current workflow test."
# crane push --insecure image.tar "${{ steps.build.outputs.image }}" echo "Future commands:"
echo "docker save '${{ steps.build.outputs.image }}' -o image.tar"
echo "crane push --insecure image.tar '${{ steps.build.outputs.image }}'"
- name: Preview Helm deployment update
run: |
echo "TODO: Test Helm deployment update in a later phase after registry push is enabled."
echo "This step is intentionally non-mutating for the current workflow test."
echo "Future command:"
echo "helm upgrade <release-name> dagster/dagster-user-deployments --namespace <namespace> --reuse-values --set-string deployments[0].image.tag=${{ steps.meta.outputs.tag }}"