diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index 4e630fb..762658b 100644 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -93,8 +93,17 @@ jobs: --username "${REGISTRY_USERNAME}" \ --password-stdin - # TODO: Re-enable push after the Gitea registry /v2 ingress route is available. - # - name: Push image - # run: | - # docker save "${{ steps.build.outputs.image }}" -o image.tar - # crane push --insecure image.tar "${{ steps.build.outputs.image }}" \ No newline at end of file + - name: Preview image push + run: | + echo "TODO: Re-enable push after the Gitea registry /v2 ingress route is available." + echo "This step is intentionally non-mutating for the current workflow test." + 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 dagster/dagster-user-deployments --namespace --reuse-values --set-string deployments[0].image.tag=${{ steps.meta.outputs.tag }}" \ No newline at end of file