mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-26 19:23:40 +00:00
@@ -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
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user