From 689f42bb12de12f3ff8f601e663f203710cf22e2 Mon Sep 17 00:00:00 2001 From: AleixMT Date: Tue, 14 Jan 2025 04:11:22 +0100 Subject: [PATCH] FIXED: typo in the file name --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2445067..cc6e836 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,16 +17,16 @@ jobs: run: | mkdir -p /workspace/artifacts make - cp hello-world.nds /workspace/artifacts/hello-world.nds + cp hello-world-nds.nds /workspace/artifacts/hello-world-nds.nds - name: Upload Artifacts to Workspace run: | - mv /workspace/artifacts/hello-world.nds $GITHUB_WORKSPACE/hello-world.nds + mv /workspace/artifacts/hello-world-nds.nds $GITHUB_WORKSPACE/hello-world-nds.nds - name: Create GitHub Release uses: ncipollo/release-action@v1 with: - artifacts: hello-world.nds + artifacts: hello-world-nds.nds tag: v1.0 name: "Release v1.0" body: "Automated release of version v1.0"