Skip to content

Commit

Permalink
fix release workflow paths
Browse files Browse the repository at this point in the history
  • Loading branch information
malmstein committed Oct 16, 2024
1 parent 7f09449 commit 604085c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ concurrency:

jobs:
create_release_task:
uses: ./.github/workflows/release_create_task.yml
uses: ./.github/workflows/release/release_create_task.yml
with:
app-version: ${{ github.event.inputs.app-version }}

create_release_tag:
needs: create_release_task
uses: ./.github/workflows/release_create_tag.yml
uses: ./.github/workflows/release/release_create_tag.yml
with:
app-version: ${{ github.event.inputs.app-version }}

launch_release_tests:
needs: create_release_tag
uses: ./.github/workflows/release_tests.yml
uses: ./.github/workflows/release/release_tests.yml
with:
app-version: ${{ github.event.inputs.app-version }}

report_workflow_failed:
if: ${{ failure() }}
uses: ./.github/workflows/release_report_error.yml
uses: ./.github/workflows/release/release_report_error.yml

0 comments on commit 604085c

Please sign in to comment.