Skip to content

Commit

Permalink
ci: run in separate steps
Browse files Browse the repository at this point in the history
  • Loading branch information
dhth committed Aug 18, 2024
1 parent 9fb76d5 commit e9073e9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit e9073e9

Please sign in to comment.