Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Fix/release ci (#5)
Browse files Browse the repository at this point in the history
* Create and push tag if VERSION is set

* Bump 0.2.0 -> 0.2.1
  • Loading branch information
cowboy-bebug authored Jun 20, 2020
1 parent ade95d1 commit 82b5d37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ jobs:
exit 0
fi
- name: Create tag
if: github.ref == 'refs/heads/master' && steps.check_version.output == 'success'
if: github.ref == 'refs/heads/master'
run: |
git tag v$VERSION
git push origin v$VERSION
if [ "$VERSION" != "" ]; then
git tag v$VERSION
git push origin v$VERSION
fi
2 changes: 1 addition & 1 deletion app_store_scraper/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "app-store-scraper"
__version__ = "0.2.0"
__version__ = "0.2.1"
__description__ = "Single API ☝ App Store Review Scraper 🧹"
__author__ = "Eric Lim"
__url__ = "https://github.com/cowboy-bebug/app-store-scraper"
Expand Down

0 comments on commit 82b5d37

Please sign in to comment.