Skip to content

Commit 5122336

Browse files
authored
Merge pull request #643 from jsonschema2dataclass/release-no-assets
Don't attach assets to a release anymore
2 parents 5406b56 + 05e45ff commit 5122336

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/plugin-release-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ jobs:
3939
if [[ ${{steps.tagger.outputs.tag}} == *"alpha"* ]]; then
4040
PRE_RELEASE="-p"
4141
fi
42-
assets=$(find . -name "*${{steps.tagger.outputs.tag}}*.jar" -or -name " *release.aar" | while read -r asset ; do echo "-a $asset" ; done)
4342
set -x
44-
hub release create $PRE_RELEASE ${assets} -m "${{steps.tagger.outputs.tag}}" "${{steps.tagger.outputs.tag}}"
43+
hub release create $PRE_RELEASE -m "${{steps.tagger.outputs.tag}}" "${{steps.tagger.outputs.tag}}"
4544
env:
4645
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4746
VERSION: ${{steps.tagger.outputs.tag}}

0 commit comments

Comments
 (0)