Skip to content

Commit

Permalink
Try to fix CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed Nov 18, 2024
1 parent a5d8850 commit fdc0210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}",
Expand Down Expand Up @@ -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 }}",
Expand Down

0 comments on commit fdc0210

Please sign in to comment.