From 042167edc58d47c0a93d722422a91760f0faef74 Mon Sep 17 00:00:00 2001 From: Andreu Botella Date: Thu, 28 May 2026 14:29:40 +0200 Subject: [PATCH] Fix CI build In #34, the `build` npm script was changed to output the result of the ecmarkup build into `out/index.html`, where it was `out.html` previously. As it turns out, this broke CI because a later step moved `out.html` to `out/index.html`. This patch removes that CI step to unbreak the build. --- .github/workflows/deploy.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b049fc9..4b41299 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,11 +24,6 @@ jobs: - name: Build run: npm run build - - name: Create `out` dir - run: | - mkdir -p out - mv out.html out/index.html - - name: Upload `out` to Deno Deploy uses: denoland/deployctl@v1 with: