Skip to content

Commit

Permalink
try token again
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed May 14, 2024
1 parent ca77eda commit 1f5f749
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
dotnet-version: 7.x.x

- name: Build Installers
run: ./build.ps1 build-installers ${{ secrets.ADAM_BUILD_TOKEN }} ${{ github.run_id }}
run: ./build.ps1 build-installers ${{ secrets.GITHUB_TOKEN }} ${{ github.run_id }}
2 changes: 1 addition & 1 deletion Build/Github.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static async Task BuildInstallers(string token, string runId)
RequestUri = new Uri("https://api.github.com/repos/specklesystems/connector-installers/dispatches"),
Headers =
{
Authorization = new AuthenticationHeaderValue("Bearer", token),
Authorization = new AuthenticationHeaderValue("Token", token),
UserAgent = { new ProductInfoHeaderValue("Speckle.build", "3.0.0") }
},
Content = content
Expand Down

0 comments on commit 1f5f749

Please sign in to comment.