From fdc0210b4cb30ec4e51c0d6d1f95b2c7e80edf3f Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 18 Nov 2024 11:39:59 +0100 Subject: [PATCH] Try to fix CI test --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3cdac24..69933bac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: const fs = require('fs') const assert = require('assert').strict; - const expected = fs.readFileSync("README.md", "utf-8") + const expected = fs.readFileSync("README.md", "utf8") const release = await github.rest.repos.getReleaseByTag({ ...context.repo, tag: "ci-test-${{ matrix.os }}-${{ github.run_id }}", @@ -72,7 +72,7 @@ jobs: const fs = require('fs') const assert = require('assert').strict; - const expected = fs.readFileSync("README.md", "utf-8") + const expected = fs.readFileSync("README.md", "utf8") const release = await github.rest.repos.getReleaseByTag({ ...context.repo, tag: "ci-test-${{ matrix.os }}-${{ github.run_id }}",