Skip to content

Commit 78cb016

Browse files
authored
Merge pull request #49 from codecov/matt/fix-push-env
fix: add missing usages of inputs.output_directory around app.tar
2 parents 5d811d6 + ad7be7c commit 78cb016

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push-env.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.run_id }}
6363
- name: Load built image
6464
run: |
65-
docker load --input app.tar
65+
docker load --input ${{ inputs.output_directory }}/app.tar
6666
- id: "auth"
6767
name: "Authenticate to Google Cloud"
6868
uses: "google-github-actions/[email protected]"
@@ -118,7 +118,7 @@ jobs:
118118
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.run_id }}
119119
- name: Load built image
120120
run: |
121-
docker load --input app.tar
121+
docker load --input ${{ inputs.output_directory }}/app.tar
122122
- name: Log in to Docker Hub
123123
uses: docker/[email protected]
124124
with:
@@ -149,7 +149,7 @@ jobs:
149149
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.run_id }}
150150
- name: Load built image
151151
run: |
152-
docker load --input app.tar
152+
docker load --input ${{ inputs.output_directory }}/app.tar
153153
- name: Log in to Docker Hub
154154
uses: docker/[email protected]
155155
with:

0 commit comments

Comments
 (0)