From 1947334e971488a4c0b375b14735571d36044145 Mon Sep 17 00:00:00 2001 From: Tobias Trumm Date: Tue, 19 Mar 2024 16:37:42 +0100 Subject: [PATCH] ci: Create release automatically --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 91fe30c..d1c36ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,8 +50,10 @@ jobs: run: gh release create "v$DENO_VERSION" --title "v$DENO_VERSION" env: DENO_VERSION: ${{ inputs.deno-version }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Add binary file to release run: gh release upload "v$DENO_VERSION" deno-aarch64-amazon-linux-2-gnu.zip env: DENO_VERSION: ${{ inputs.deno-version }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}