fix: currency not null #55
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: release | |
on: | |
push: | |
branches: | |
- master | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: write | |
issues: write | |
id-token: write | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
environment: | |
name: rubygems | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- uses: rubygems/release-gem@v1 | |
- name: pause to avoid 2ndary rate limits # https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28#about-secondary-rate-limits | |
run: | | |
sleep "$(echo $RANDOM % 20 + 1 | bc)" | |
- uses: cycjimmy/[email protected] | |
with: | |
semantic_version: 18 | |
extra_plugins: | | |
@semantic-release/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |