Skip to content

Commit

Permalink
added the publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
YoussefSell committed Jul 16, 2022
1 parent 94dfca9 commit 3fcd837
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions publish-assets.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
assets=()
for asset in *.nupkg
do
assets+=("$asset")
done
for asset in *.snupkg
do
assets+=("$asset")
done
gh release upload $1 "${assets[@]}"

0 comments on commit 3fcd837

Please sign in to comment.