From 267e88b809551db5cff3fe0e5a9b6659629dc297 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 6 May 2026 19:59:32 +0000 Subject: [PATCH 1/2] fix: point badge to stable demo/build/latest/ instead of SHA-specific URL Agent-Logs-Url: https://github.com/luke-b/DosTest/sessions/50fde0f7-fd08-4ca9-8a43-7a44b4932b85 Co-authored-by: luke-b <1448891+luke-b@users.noreply.github.com> --- .github/workflows/borland-dos-pipeline.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/borland-dos-pipeline.yml b/.github/workflows/borland-dos-pipeline.yml index 98ce946..06780be 100644 --- a/.github/workflows/borland-dos-pipeline.yml +++ b/.github/workflows/borland-dos-pipeline.yml @@ -226,7 +226,7 @@ jobs: - name: Update demo link in README.md run: | SHORT_SHA="${{ steps.sha.outputs.short }}" - DEMO_URL="https://luke-b.github.io/DosTest/demo/build/${SHORT_SHA}/" + DEMO_URL="https://luke-b.github.io/DosTest/demo/build/latest/" BADGE_LINE="[![Play latest build](https://img.shields.io/badge/Play-Latest%20Build-brightgreen)](${DEMO_URL})" BLOCK="\n${BADGE_LINE}\n" diff --git a/README.md b/README.md index f1dc011..a3cacf3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Wolfenstein 3D Build with DOSBox-X and Borland C++ on GitHub Actions -[![Play latest build](https://img.shields.io/badge/Play-Latest%20Build-brightgreen)](https://luke-b.github.io/DosTest/demo/build/81daf9b/) +[![Play latest build](https://img.shields.io/badge/Play-Latest%20Build-brightgreen)](https://luke-b.github.io/DosTest/demo/build/latest/) This repository contains a setup to build the classic Wolfenstein 3D shareware source code using DOSBox-X and Borland C++ within a GitHub Actions pipeline. The built executable can then be run using js-dos, making it accessible through a web browser. From ab53c81e502a2b0cb5e9ec06db9b780ae52d748c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 6 May 2026 20:00:02 +0000 Subject: [PATCH 2/2] fix: remove unused SHORT_SHA variable from update-readme step Agent-Logs-Url: https://github.com/luke-b/DosTest/sessions/50fde0f7-fd08-4ca9-8a43-7a44b4932b85 Co-authored-by: luke-b <1448891+luke-b@users.noreply.github.com> --- .github/workflows/borland-dos-pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/borland-dos-pipeline.yml b/.github/workflows/borland-dos-pipeline.yml index 06780be..a7677e6 100644 --- a/.github/workflows/borland-dos-pipeline.yml +++ b/.github/workflows/borland-dos-pipeline.yml @@ -225,7 +225,6 @@ jobs: - name: Update demo link in README.md run: | - SHORT_SHA="${{ steps.sha.outputs.short }}" DEMO_URL="https://luke-b.github.io/DosTest/demo/build/latest/" BADGE_LINE="[![Play latest build](https://img.shields.io/badge/Play-Latest%20Build-brightgreen)](${DEMO_URL})" BLOCK="\n${BADGE_LINE}\n"