Fix M2M authentication and add clock tolerance to JWT methods (#130) #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish RubyGem and GitHub release | |
on: | |
push: | |
branches: [main] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
name: Publish RubyGem and GitHub release | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.0 | |
- name: Get version | |
id: version | |
run: | | |
VERSION=$(sed -n "s/.*VERSION = [\"']\(.*\)[\"'].*/\1/p" lib/stytch/version.rb) | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
echo "release_tag=v$VERSION" >> $GITHUB_OUTPUT | |
- name: Get changed files | |
id: files | |
uses: jitterbit/get-changed-files@v1 | |
- name: Check for config.rb diff | |
id: diff | |
run: | | |
FOUND=0 | |
for changed_file in ${{ steps.files.outputs.all }}; do | |
if [[ $changed_file == "lib/stytch/version.rb" ]]; then | |
FOUND=1 | |
fi | |
done | |
echo "diff=$FOUND" >> $GITHUB_OUTPUT | |
- name: Publish RubyGem | |
if: steps.diff.outputs.diff != 0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GEM_HOST_API_KEY: "${{ secrets.RUBYGEMS_AUTH_TOKEN }}" | |
run: | | |
mkdir -p $HOME/.gem | |
touch $HOME/.gem/credentials | |
chmod 0600 $HOME/.gem/credentials | |
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials | |
gem build stytch.gemspec | |
gem push "stytch-${{ steps.version.outputs.version }}.gem" | |
- name: Create release | |
if: steps.diff.outputs.diff != 0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release create "${{ steps.version.outputs.release_tag }}" --generate-notes |