Skip to content

Commit

Permalink
Fix release paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Anilm3 committed Jan 17, 2023
1 parent 917c4a4 commit d4c45a6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
/tmp/packages/*.sha256
package-nuget:
needs: [ windows-builds, macos-build, docker-builds ]
needs: [ windows-builds, macos-build, macos-cross-build, docker-builds ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
path: ${{ github.workspace }}/output-packages

release:
needs: [ windows-builds, macos-build, docker-builds, package-nuget]
needs: [ windows-builds, macos-build, macos-cross-build, docker-builds, package-nuget]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
Expand All @@ -229,6 +229,6 @@ jobs:
with:
draft: true
files: |
/artifacts/**.tar.gz
/artifacts/**.sha256
/artifacts/**.nupkg
./artifacts/**/*.tar.gz
./artifacts/**/*.sha256
./artifacts/**/*.nupkg

0 comments on commit d4c45a6

Please sign in to comment.