From c76912ce8e8bc698727e348b600b90c81ed71152 Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Sat, 28 Sep 2024 23:47:10 -0700 Subject: [PATCH] Update update-set-implementation-lists.yml --- .github/workflows/update-set-implementation-lists.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 274b57834fd..beb64722859 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -130,7 +130,7 @@ jobs: }); }); - uses: actions/github-script@v6.4.1 - id: updatewiki + id: updatesetimplementations with: script: | const mustache = require('mustache') @@ -202,7 +202,7 @@ jobs: console.log(content); try { - fs.writeFileSync(path.join('wiki', 'Set-implementation-list.md'), content); + fs.writeFileSync(path.join('Set-implementation-list.md'), content); } catch (err) { console.error(err); } @@ -212,6 +212,6 @@ jobs: git config user.name github-actions git config user.email github-actions@github.com # Stage the Set-implementation-list.md file, commit, then push - git add ./wiki/* + git add Set-implementation-list.md git commit -m "Update Set-implementation-list.md" || exit 0 git push