From e9073e95b03870ff4b3272bcc78ba6b128e6f0da Mon Sep 17 00:00:00 2001 From: Dhruv Thakur Date: Sun, 18 Aug 2024 13:10:40 +0200 Subject: [PATCH] ci: run in separate steps --- .github/workflows/build.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e9fe69..140b1dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,10 +53,15 @@ jobs: with: app-id: ${{ vars.GH_TOKEN_APP_ID }} private-key: ${{ secrets.GH_TOKEN_APP_PRIVATE_KEY }} - - name: Run act3 - run: | - ./act3 - ./act3 -f table - ./act3 -f html + - name: Run act3 with default output + run: ./act3 + env: + GH_TOKEN: ${{ steps.generate-token.outputs.token }} + - name: Run act3 with tabular output + run: ./act3 -f table + env: + GH_TOKEN: ${{ steps.generate-token.outputs.token }} + - name: Run act3 with HTML output + run: ./act3 -f html env: GH_TOKEN: ${{ steps.generate-token.outputs.token }}