Skip to content

Commit

Permalink
fix: release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
selfuryon committed Nov 29, 2023
1 parent 8c2d9fe commit d3726d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/func-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
branches: ['main']
workflow_dispatch:
workflow_call:

jobs:
functional-tests:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ env:
artifacts_name: 'building-artifacts'

jobs:
tests-and-linters:
tests:
uses: ./.github/workflows/tests.yaml
func-tests:
uses: ./.github/workflows/func-tests.yaml

prepare:
name: Prepare Variables
needs: tests-and-linters
needs: [tests, func-tests]
runs-on: ubuntu-latest
outputs:
release_version: ${{ steps.enver.outputs.release_version }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
branches: ['main']
workflow_dispatch:
workflow_call:

jobs:
go-tests:
Expand Down

0 comments on commit d3726d6

Please sign in to comment.