Skip to content

Commit 5eeb536

Browse files
committed
Fixed errors in workflow
1 parent 94e9953 commit 5eeb536

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ jobs:
164164
if: inputs.build-platforms == 'gcp'
165165
needs: setup
166166
with:
167-
environment: ${{ matrix.environment }}
168167
function-name: ${{ needs.setup.outputs.evaluation_function_name }}
169168
region: ${{ inputs.region }}
170169
build-file: ${{ inputs.build-file }}

.github/workflows/gcp_build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
packages: write
6565
id-token: write
6666
outputs:
67-
registry: ${{ steps.login-ecr.outputs.registry }}
67+
registry: europe-west2-docker.pkg.dev/wolfram-evaluation-functions/evaluation-function/${{inputs.function-name}}:latest
6868

6969
steps:
7070
- uses: 'actions/checkout@v4'
@@ -82,8 +82,9 @@ jobs:
8282
run: |
8383
gcloud auth configure-docker ${{ inputs.region }}docker.pkg.dev
8484
- name: Build and Push Docker image
85+
id: 'build-push'
8586
run: |
8687
8788
IMAGE_URI="europe-west2-docker.pkg.dev/wolfram-evaluation-functions/evaluation-function/${{inputs.function-name}}:latest"
8889
docker build -t "$IMAGE_URI" .
89-
docker push "$IMAGE_URI"
90+
docker push "$IMAGE_URI"

0 commit comments

Comments
 (0)