From 0634f250a5cfeb2212bc18ce0f1907be0bb6be94 Mon Sep 17 00:00:00 2001 From: Alex Bigelow Date: Fri, 15 Sep 2023 14:54:37 -0700 Subject: [PATCH] Maybe (?) add token correctly --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32e0b2a..c1bcd96 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Update People Info 🙂 # This pulls the latest info about who is on which github team run: | - gh api graphql -F owner=$OWNER -F name=$REPO -f query=' + gh api graphql -f query=' query { organization(login: "resbazaz") { teams(first:100) { @@ -38,6 +38,8 @@ jobs: } } ' > _site/static/people.json + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Deploy 🚀 # This step commits the contents of the _site folder into the gh-pages branch (which github serves as a website) uses: JamesIves/github-pages-deploy-action@v4