Skip to content

Commit

Permalink
env korrigiert
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Oct 13, 2023
1 parent 6d09a0f commit 609e695
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/docker_bullseye_altuser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
push: false
file: ./ci/Dockerfile.bullseye.test_install.armv7
platforms: linux/arm/v7
tags: ${{ DOCKER_IMAGE_NAME }}:latest
tags: ${{ env.DOCKER_IMAGE_NAME }}:latest
cache-from: type=gha,scope=${{ github.ref_name }}-bullseye-altuser
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-bullseye-altuser
outputs: type=docker,dest=/tmp/${{ DOCKER_IMAGE_NAME }}_latest.tar
outputs: type=docker,dest=/tmp/${{ env.DOCKER_IMAGE_NAME }}_latest.tar
build-args: |
USER_NAME=hans
USER_GROUP=wurst
Expand All @@ -51,8 +51,8 @@ jobs:
- name: Upload Docker Build Image
uses: actions/upload-artifact@v3
with:
name: ${{ DOCKER_IMAGE_NAME }}_latest.tar
path: /tmp/${{ DOCKER_IMAGE_NAME }}_latest.tar
name: ${{ env.DOCKER_IMAGE_NAME }}_latest.tar
path: /tmp/${{ env.DOCKER_IMAGE_NAME }}_latest.tar

test:

Expand All @@ -70,17 +70,17 @@ jobs:
- name: Download Docker Build Image
uses: actions/download-artifact@v3
with:
name: ${{ DOCKER_IMAGE_NAME }}_latest.tar
name: ${{ env.DOCKER_IMAGE_NAME }}_latest.tar
path: /tmp/

- name: Load Docker Build Image
run: |
docker load --input /tmp/${{ DOCKER_IMAGE_NAME }}_latest.tar
docker load --input /tmp/${{ env.DOCKER_IMAGE_NAME }}_latest.tar
- name: Run ${{ matrix.test_Script }} Bullseye ARMv7
uses: tj-actions/docker-run@v2
with:
image: ${{ DOCKER_IMAGE_NAME }}:latest
image: ${{ env.DOCKER_IMAGE_NAME }}:latest
options: --platform linux/arm/v7
name: ${{ matrix.test_Script }}
args: |
Expand Down

0 comments on commit 609e695

Please sign in to comment.