From a091a26bb2a3ed693e418ddc8c832b58aa2b9445 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Mon, 2 Oct 2023 10:40:25 -0500 Subject: [PATCH] v2 docs: fix github release action specific The action schema is broken because artifacts has to be a dirglob, not an array. --- .github/workflows/v2-docs.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/v2-docs.yaml b/.github/workflows/v2-docs.yaml index a6097bec0..90a7a07c5 100644 --- a/.github/workflows/v2-docs.yaml +++ b/.github/workflows/v2-docs.yaml @@ -22,10 +22,9 @@ jobs: yarn install yarn build tar czvf ${{ github.ref }}.website.tgz -C public effection + cp *.website.tgz .. - uses: ncipollo/release-action@v1 with: - artifacts: - - "${{ github.ref }}.website.tgz" - - "${{ github.ref }}.apidocs.tgz" + artifacts: "*.tgz" token: ${{ secrets.FRONTSIDEJACK_GITHUB_TOKEN }}