Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd authored May 6, 2024
1 parent 352a861 commit 276b793
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: test
env:
PROWLARR_VERSION: ${{ needs.versioning.outputs.prowlarr_version }}
run: |
echo ${{ needs.versioning.outputs.prowlarr_version }}
echo "$PROWLARR_VERSION"
backend:
needs: [versioning]
strategy:
Expand Down Expand Up @@ -93,7 +95,7 @@ jobs:
build_target: ${{ matrix.build_target }}
artifact_name: ${{ matrix.artifact_name }}
dotnet_version: '6.0.421'
release_version: ${{ github.env.PROWLARR_VERSION }}
release_version: ${{ needs.versioning.outputs.prowlarr_version }}
framework: "net6.0"
deploy:
needs: [versioning, backend, frontend, package]
Expand All @@ -103,4 +105,4 @@ jobs:
framework: "net6.0"
branch: ${{ github.ref_name }}
major_version: ${{ github.env.PROWLARR_MAJOR_VERSION }}
version: ${{ github.env.PROWLARR_VERSION }}
version: ${{ needs.versioning.outputs.prowlarr_version }}

0 comments on commit 276b793

Please sign in to comment.