Skip to content

Commit

Permalink
Fix release action conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Sep 1, 2024
1 parent f4df9e0 commit 631a07a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 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 @@ -219,6 +218,7 @@ jobs:

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 631a07a

Please sign in to comment.