Update update-set-implementation-lists.yml

This commit is contained in:
ExpensiveKoala 2024-09-28 23:47:10 -07:00 committed by GitHub
parent 0c07b70320
commit c76912ce8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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