Skip to content

Commit

Permalink
Update tagged-release.yml
Browse files Browse the repository at this point in the history
Don't delete pdb or xml from distributions; xml in API is useful documentation, pdb may help with bug reports
  • Loading branch information
Jusas authored Feb 21, 2022
1 parent 68ec94e commit 1fb447b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
do
[ -d "watney-cli" ] && rm -rf watney-cli
mv bin-cli-$a watney-cli
rm -f watney-cli/*.xml && rm -f watney-cli/*.pdb
rm -f watney-cli/*.xml
zip -r ${{ env.PKG_PREFIX }}-cli-${{ steps.buildvars.outputs.version_string }}-$a.zip watney-cli/
done
Expand All @@ -88,7 +88,7 @@ jobs:
do
[ -d "watney-api" ] && rm -rf watney-api
mv bin-api-$a watney-api
rm -f watney-api/*.xml && rm -f watney-api/*.pdb && rm -f watney-api/*Development.json && rm -f watney-api/*.config
rm -f watney-api/*Development.json && rm -f watney-api/*.config
zip -r ${{ env.PKG_PREFIX }}-api-${{ steps.buildvars.outputs.version_string }}-$a.zip watney-api/
done
Expand All @@ -98,7 +98,7 @@ jobs:
do
[ -d "watney-cli" ] && rm -rf watney-cli
mv bin-cli-$a watney-cli
rm -f watney-cli/*.xml && rm -f watney-cli/*.pdb
rm -f watney-cli/*.xml
tar -czf ${{ env.PKG_PREFIX }}-cli-${{ steps.buildvars.outputs.version_string }}-$a.tar.gz watney-cli/
done
Expand All @@ -108,7 +108,7 @@ jobs:
do
[ -d "watney-api" ] && rm -rf watney-api
mv bin-api-$a watney-api
rm -f watney-api/*.xml && rm -f watney-api/*.pdb && rm -f watney-api/*Development.json && rm -f watney-api/*.config
rm -f watney-api/*Development.json && rm -f watney-api/*.config
tar -czf ${{ env.PKG_PREFIX }}-api-${{ steps.buildvars.outputs.version_string }}-$a.tar.gz watney-api/
done
Expand Down

0 comments on commit 1fb447b

Please sign in to comment.