Skip to content

Commit

Permalink
Fix release action conditions (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos authored Sep 1, 2024
1 parent f4df9e0 commit 6b48e0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
branches: ['main']

jobs:

generate-matrix:
name: 'Generate matrix from cabal'
outputs:
Expand Down Expand Up @@ -218,7 +217,9 @@ jobs:
path: ${{ env.PRINTAPI_EXEC_TAR }}

collect-test-results:
name: Collect test results
runs-on: ubuntu-latest
needs: ['builds', 'build-alpine']
steps:
- name: Install junitparser
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- "v*"

jobs:

generate-matrix:
if: startsWith(github.ref, 'refs/tags/v')
name: 'Generate matrix from cabal'
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
Expand All @@ -24,6 +24,7 @@ jobs:
version: 0.1.7.1

generate-alpine-matrix:
if: startsWith(github.ref, 'refs/tags/v')
name: 'Generate Alpine matrix from cabal'
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
Expand Down
Empty file removed .github/workflows/test-reports.yml
Empty file.

0 comments on commit 6b48e0c

Please sign in to comment.