From ddc87eaea1aac1f836d7a7195d9037b74572dfd0 Mon Sep 17 00:00:00 2001 From: Jack Back Date: Mon, 25 Mar 2024 23:13:14 +0100 Subject: [PATCH] build: maybe now? --- .gitea/workflows/link.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/link.yml b/.gitea/workflows/link.yml index 6123a6e..025675a 100644 --- a/.gitea/workflows/link.yml +++ b/.gitea/workflows/link.yml @@ -16,16 +16,16 @@ jobs: # NOTE - If LFS ever starts getting used for storing zones, switch this to true! lfs: false + - name: Install Docker + run: | + curl -fsSL https://get.docker.com -o get-docker.sh + sh get-docker.sh + - name: Setup OAT uses: diamante0018/setup-oat@main with: version: "0.10.0" - name: Link assets - uses: addnab/docker-run-action@v3 - with: - image: gcc:13 - options: --volumes-from=${{ env.JOB_CONTAINER_NAME }} - run: | - cd ${{ github.workspace }} - ./.OAT/Linker -v --load "deps/iw5-zones/zone/english/code_post_gfx_mp.ff" --menu-permissive --menu-no-optimization code_post_gfx_mp + run: | + docker run --rm -v $PWD:/workdir --workdir /workdir ubuntu:noble ./.OAT/Linker -v --load "deps/iw5-zones/zone/english/code_post_gfx_mp.ff" --menu-permissive --menu-no-optimization code_post_gfx_mp