Skip to content

Commit

Permalink
fix: release paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jolexxa committed Jun 4, 2024
1 parent 5cd607f commit c97292d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ jobs:
- name: 🔎 Get Package Path
id: package-path
run: |
package=$(find . -name "Chickensoft.Introspection.*.nupkg")
package=$(find Chickensoft.Introspection/nupkg -type f -name "*.nupkg")
echo "package=$package" >> "$GITHUB_OUTPUT"
echo "📦 Found package: $package"
- name: 🔎 Get Generator Package Path
id: gen-package-path
run: |
package=$(find . -name "Chickensoft.Introspection.Generator*.nupkg")
package=$(find Chickensoft.Introspection.Generator/nupkg -type f -name "*.nupkg")
echo "package=$package" >> "$GITHUB_OUTPUT"
echo "📦 Found generator package: $package"
Expand Down

0 comments on commit c97292d

Please sign in to comment.