Skip to content

Commit

Permalink
Fixing release script
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Oct 26, 2022
1 parent e539133 commit 3c56ccd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ jobs:

- run: bundle exec rake gem:parallel

- run: bundle exec rake build

- uses: actions/upload-artifact@v3
with:
name: pkg
Expand Down Expand Up @@ -124,7 +126,7 @@ jobs:
release:
name: Release gem
runs-on: ubuntu-latest
# if: contains(github.ref, 'refs/tags/v')
if: contains(github.ref, 'refs/tags/v')
needs: [test, package-rake-compiler-dock, package-linux-musl-x86_64, package-linux-musl-aarch64]
steps:
- uses: actions/checkout@v3
Expand All @@ -149,4 +151,4 @@ jobs:
mkdir tmp
for gem in pkg/*.gem; do gem push -V $gem; done
# for gem in pkg/*.gem; do echo "gem push -V $gem"; done
# for gem in pkg/*.gem; do echo "Will call 'gem push -V $gem'"; done
2 changes: 1 addition & 1 deletion lib/extract_ttc/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ExtractTtc
VERSION = "0.3.2".freeze
VERSION = "0.3.3".freeze
end

0 comments on commit 3c56ccd

Please sign in to comment.