From 3677e9f7d4558d7527b4e24b3de37bf1f7ec2e70 Mon Sep 17 00:00:00 2001 From: AleixMT Date: Tue, 14 Jan 2025 04:09:56 +0100 Subject: [PATCH] UPDATED: transference of nds file outside the container --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a63b85..2445067 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,14 +6,23 @@ jobs: build: name: ubuntu-latest runs-on: ubuntu-latest - container: devkitpro/devkitarm:latest + container: + image: devkitpro/devkitarm:latest + options: --volume /tmp/artifacts:/workspace/artifacts steps: - uses: actions/checkout@v3.5.2 - name: Build run: | + mkdir -p /workspace/artifacts make + cp hello-world.nds /workspace/artifacts/hello-world.nds + + - name: Upload Artifacts to Workspace + run: | + mv /workspace/artifacts/hello-world.nds $GITHUB_WORKSPACE/hello-world.nds + - name: Create GitHub Release uses: ncipollo/release-action@v1 with: