Skip to content

Commit

Permalink
fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry committed Jan 3, 2023
1 parent 42d1af9 commit 70073fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ on:
workflow_dispatch:

jobs:
test:
uses: ./.github/workflows/test.yml
package:
needs: test
uses: ./.github/workflows/package.yml
release:
needs: package
Expand All @@ -21,7 +24,7 @@ jobs:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: ${{ needs.package.outputs.PrereleaseVersion != '' }}
title: Release ${{ needs.package.outputs.NuGetPackageVersion }}
automatic_release_tag: ${{ needs.nbgv.outputs.NuGetPackageVersion }}
automatic_release_tag: ${{ needs.package.outputs.NuGetPackageVersion }}
files: |
./out/*
- name: Push to Nuget.org
Expand Down

0 comments on commit 70073fe

Please sign in to comment.