From e8f58aa1cea187a059f6e5baf188d6a33e266a3b Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Fri, 26 Jan 2024 15:16:51 -0800 Subject: [PATCH] Remove pnpm and cache from tag workflow Because we're not actually doing anything with pnpm this breaks in the cleanup step. Remove this unneeded stuff. --- .github/workflows/tag_version.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/tag_version.yaml b/.github/workflows/tag_version.yaml index 53a23dd75..055972547 100644 --- a/.github/workflows/tag_version.yaml +++ b/.github/workflows/tag_version.yaml @@ -14,13 +14,9 @@ jobs: - uses: actions/checkout@v4 with: token: ${{ secrets.ZORGBORT_TOKEN }} - - uses: pnpm/action-setup@v2 - with: - version: 8 - uses: actions/setup-node@v4 with: node-version: 18 - cache: pnpm - name: Validate releaseType run: npx in-string-list ${{ github.event.inputs.releaseType }} major,minor,patch - name: Setup Git