Skip to content

Commit a336433

Browse files
committed
feat: Update Docker pull command to use the stage image instead of the latest image
1 parent 7052387 commit a336433

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ runs:
125125
if: steps.cache-gitstream-docker.outputs.cache-hit != 'true'
126126
shell: bash
127127
run: |
128-
docker pull gitstream/rules-engine:latest
129-
docker save -o /tmp/${{ env.DOCKER_KEY }}.tar gitstream/rules-engine:latest
128+
docker pull gitstream/rules-engine:stage
129+
docker save -o /tmp/${{ env.DOCKER_KEY }}.tar gitstream/rules-engine:stage
130130
131131
- name: Docker Load
132132
if: steps.cache-gitstream-docker.outputs.cache-hit == 'true'
@@ -149,5 +149,5 @@ runs:
149149
-e CLIENT_PAYLOAD=${{ steps.safe-strings.outputs.client_payload }} \
150150
-e RULES_RESOLVER_URL=${{ github.event.inputs.resolver_url }} \
151151
-e RULES_RESOLVER_TOKEN=${{ github.event.inputs.resolver_token }} \
152-
-e DEBUG_MODE=${{ github.event.inputs.debug_mode }} gitstream/rules-engine:latest
152+
-e DEBUG_MODE=${{ github.event.inputs.debug_mode }} gitstream/rules-engine:stage
153153
shell: bash

0 commit comments

Comments
 (0)