Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiklein committed Oct 20, 2024
1 parent aa13bf6 commit bfba163
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
tags: "${DOCKER_IMAGE}:${UBUNTU_VERSION}"
tags: "${{ env.DOCKER_IMAGE }}:${{ matrix.UBUNTU_VERSION }}"
cache-from: type=gha
cache-to: type=gha,mode=max
outputs: type=docker,dest=/tmp/ubuntu-desktop-${UBUNTU_VERSION}.tar
outputs: type=docker,dest=/tmp/ubuntu-desktop-${{ matrix.UBUNTU_VERSION }}.tar

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: "${DOCKER_IMAGE}:${UBUNTU_VERSION}"
path: /tmp/ubuntu-desktop-${UBUNTU_VERSION}.tar
name: "${{ env.DOCKER_IMAGE }}:${{ matrix.UBUNTU_VERSION }}"
path: /tmp/ubuntu-desktop-${{ matrix.UBUNTU_VERSION }}.tar

test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit bfba163

Please sign in to comment.