From ba6a508b6c7e199a5b5494fd55a99382bf2a762b Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Sun, 24 Dec 2023 19:36:46 +0000 Subject: [PATCH] build: add token --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b001c75..0e0637b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,16 +43,18 @@ jobs: - name: Delete (specific, glob disabled) uses: ./ with: + token: ${{ secrets.GITHUB_TOKEN }} name: my-artifact useGlob: false - name: Delete (pattern, glob enabled) uses: ./ with: + token: ${{ secrets.GITHUB_TOKEN }} name: my-* - name: Delete (specific, glob enabled) uses: ./ with: + token: ${{ secrets.GITHUB_TOKEN }} name: you-artifact -