From 307ae10623a0a489fb16b4efe99ce36639535089 Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Thu, 26 Aug 2021 17:27:58 +0200 Subject: [PATCH] Fix publishing Add the `actions/checkout` action before publishing. --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f324afc..85c40a6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,6 +48,7 @@ jobs: needs: [eslint, pack, prettier, tsc] if: startsWith(github.ref, 'refs/tags/') steps: + - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: { node-version: 16 } - run: npm ci