Skip to content

Commit

Permalink
fixed typos in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CorwinAnsley committed Sep 12, 2024
1 parent 39510a5 commit d741227
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_deb_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-latest

env:
RELEASE_URL: ${{ needs.prepare-build.outputs.release_url }}
RELEASE_URL: ${{ needs.prepare_build.outputs.release_url }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -168,10 +168,10 @@ jobs:
asset_content_type: application/vnd.debian.binary-package

build_darwin_release:
needs: [prepare-build]
needs: [prepare_build]
runs-on: macos-12
env:
RELEASE_URL: ${{ needs.prepare-build.outputs.release_url }}
RELEASE_URL: ${{ needs.prepare_build.outputs.release_url }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -216,10 +216,10 @@ jobs:
asset_content_type: application/zip

build_win_release:
needs: [prepare-build]
needs: [prepare_build]
runs-on: windows-latest
env:
RELEASE_URL: ${{ needs.prepare-build.outputs.release_url }}
RELEASE_URL: ${{ needs.prepare_build.outputs.release_url }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit d741227

Please sign in to comment.