Skip to content

Commit

Permalink
fix tar image
Browse files Browse the repository at this point in the history
  • Loading branch information
boojamya committed Apr 30, 2024
1 parent 7892b89 commit beacf53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
pull_request:

env:
TAR_PATH: /tmp/docker-image.tar
TAR_NAME: docker-image
TAR_PATH: docker-image.tar
ARTIFACT_NAME: tar-docker-image

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Publish Tarball as Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.TAR_NAME }}
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.TAR_PATH }}

prepare-e2e-tests:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Download Tarball Artifact
uses: actions/download-artifact@v3
with:
name: ${{ env.TAR_NAME }}
name: ${{ env.ARTIFACT_NAME }}

- name: Load Docker Image
run: docker image load -i ${{ env.TAR_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ^1.21
go-version: ^1.22

- name: Run Unit Tests
run: go test -v ./...

0 comments on commit beacf53

Please sign in to comment.