Skip to content

Commit

Permalink
release workflow optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Apr 10, 2022
1 parent e374e8f commit e2aa214
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ jobs:
cd ..
rm -rf libemf2svg/.git*
rm -rf libemf2svg/vcpkg/.git*
rm -rf libemf2svg/tests
tar cvzf libemf2svg.tar.gz libemf2svg
sha256sum libemf2svg.tar.gz > libemf2svg.tar.gz.sha256
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{github.workspace}}/../libemf2svg.tar.gz
files: |
${{github.workspace}}/../libemf2svg.tar.gz
${{github.workspace}}/../libemf2svg.tar.gz.sha256

0 comments on commit e2aa214

Please sign in to comment.