Skip to content

Commit

Permalink
create a release bash file (#115)
Browse files Browse the repository at this point in the history
Co-authored-by: customer-engineering <[email protected]>
  • Loading branch information
martin-vct and customer-engineering authored Oct 9, 2023
1 parent a81713e commit 40dad12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,4 @@ jobs:
env:
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
GUTHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
RELEASE_COMMAND: |
git config --global user.email "[email protected]"
git config --global user.name "customer-engineering"
rake release
RELEASE_COMMAND: ./release.sh
4 changes: 4 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
git config --global user.email "[email protected]"
git config --global user.name "customer-engineering"
rake release

0 comments on commit 40dad12

Please sign in to comment.