fix: Add missing prefix to GitHub Actions

This commit is contained in:
robshape 2023-04-24 13:26:25 +02:00
parent 00e14ab055
commit 1c554c8db4

View file

@ -10,10 +10,10 @@ jobs:
uses: actions/checkout@v3.5.2 uses: actions/checkout@v3.5.2
- name: Setup Docker - name: Setup Docker
uses: docker/setup-buildx-action@2.5.0 uses: docker/setup-buildx-action@v2.5.0
- name: Build toolchain - name: Build toolchain
uses: docker/build-push-action@4.0.0 uses: docker/build-push-action@v4.0.0
with: with:
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
@ -22,7 +22,7 @@ jobs:
tags: rg35xx-toolchain-new:latest tags: rg35xx-toolchain-new:latest
- name: Build project - name: Build project
uses: addnab/docker-run-action@v3.0.0 uses: addnab/docker-run-action@v3
with: with:
image: rg35xx-toolchain-new:latest image: rg35xx-toolchain-new:latest
options: -v ${{github.workspace}}:/root/workspace options: -v ${{github.workspace}}:/root/workspace