Turns out it's not quite right yet.
This commit is contained in:
Christopher Serr
2024-07-16 21:57:14 +02:00
committed by GitHub
parent ccb4bbd1b4
commit 5d3ee0402c
2 changed files with 9 additions and 2 deletions
+4 -1
View File
@@ -83,8 +83,9 @@ jobs:
- name: Install binaryen
if: github.repository == 'LiveSplit/LiveSplitOne' && github.ref == 'refs/heads/master'
shell: bash
run: |
cd ~/.cargo/bin
cd ${{ matrix.cargo_bin }}
tar -xzf binaryen-*-${{ matrix.binaryen }}.tar.gz
mv binaryen*/bin/wasm* .
@@ -128,6 +129,8 @@ jobs:
librsvg2-dev
- name: Build Core
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run build:core:deploy
- name: Run eslint (Web)
+5 -1
View File
@@ -44,7 +44,11 @@ function parseChangelog() {
export default async (env, argv) => {
const getContributorsForRepo = async (repoName) => {
const contributorsData = await fetch(`https://api.github.com/repos/LiveSplit/${repoName}/contributors`);
const contributorsData = await fetch(`https://api.github.com/repos/LiveSplit/${repoName}/contributors`, {
headers: {
"Authorization": env.GITHUB_TOKEN ? `Bearer ${env.GITHUB_TOKEN}` : undefined,
},
});
return contributorsData.json();
}