Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/push-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.run_id }}
- name: Load built image
run: |
docker load --input app.tar
docker load --input ${{ inputs.output_directory }}/app.tar
- id: "auth"
name: "Authenticate to Google Cloud"
uses: "google-github-actions/[email protected]"
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.run_id }}
- name: Load built image
run: |
docker load --input app.tar
docker load --input ${{ inputs.output_directory }}/app.tar
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.run_id }}
- name: Load built image
run: |
docker load --input app.tar
docker load --input ${{ inputs.output_directory }}/app.tar
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
Expand Down
Loading