From a5d6269500235abce65a0f64773397d2cea9ff86 Mon Sep 17 00:00:00 2001 From: wrnrlr Date: Thu, 10 Oct 2024 11:57:18 +0200 Subject: [PATCH] Fix github workflow --- .github/workflows/publish.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index be485c7..9ca7804 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,5 +12,9 @@ jobs: contents: read id-token: write # The OIDC ID token is used for authentication with JSR. steps: - - uses: actions/checkout@v4 - - run: deno task release + - name: Check out the repository to the runner + uses: actions/checkout@v4 + - name: Install Deno + run: curl -fsSL https://deno.land/install.sh | sh + - name: Run release script + run: deno task release