Compare commits

..

3 Commits

Author SHA1 Message Date
d0f5760c7a Add --no-cache to the correct place in the build command.
All checks were successful
Build / build (push) Successful in 27m11s
2024-07-23 22:48:53 +03:00
db4b7e7c46 Add --no-cache to build command.
Some checks failed
Build / build (push) Failing after 32s
2024-07-23 22:47:16 +03:00
165fd4f7f3 Add the .net 8.0 sdk to the build image.
Some checks failed
Build / build (push) Failing after 1m47s
2024-07-23 22:41:38 +03:00
2 changed files with 2 additions and 1 deletions

@ -18,7 +18,7 @@ jobs:
- name: Check repository out.
uses: actions/checkout@v3
- name: Build Docker Image
run: "docker build -t git.mixedup.dev/refuel/docker-cross-compiler:${{gitea.ref_name}} ."
run: "docker build --no-cache -t git.mixedup.dev/refuel/docker-cross-compiler:${{gitea.ref_name}} ."
- name: Upload Docker Image
run: "docker push git.mixedup.dev/refuel/docker-cross-compiler:${{gitea.ref_name}}"
- name: Alias image as latest and push.

@ -28,6 +28,7 @@ RUN echo docker_cross_compiler > /etc/hostname
cpio \
curl \
dotnet-sdk-6.0 \
dotnet-sdk-8.0 \
gcc-arm-linux-gnueabihf \
gcc-aarch64-linux-gnu \
gcc-i686-linux-gnu \