From fb70df817c6566ca100d57ec1878a4573489a43d Mon Sep 17 00:00:00 2001 From: iCrawl Date: Sat, 3 Dec 2022 17:05:37 +0100 Subject: [PATCH] ci: fix ref name --- .github/workflows/documentation.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a9cca60ee..206afd47c 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -67,7 +67,20 @@ jobs: max-parallel: 1 fail-fast: false matrix: - package: ['brokers', 'builders', 'collection', 'core', 'discord.js', 'formatters', 'proxy', 'rest', 'util', 'voice', 'ws'] + package: + [ + 'brokers', + 'builders', + 'collection', + 'core', + 'discord.js', + 'formatters', + 'proxy', + 'rest', + 'util', + 'voice', + 'ws', + ] runs-on: ubuntu-latest env: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} @@ -111,7 +124,7 @@ jobs: id: extract-tag uses: ./packages/actions/src/formatTag with: - tag: ${{ env.GITHUB_REF_NAME }} + tag: ${{ github.ref_name }} - name: Move docs to correct directory if: ${{ github.ref_type == 'tag' && matrix.package == steps.extract-tag.outputs.package }}