Change to use exceptions to retry #593
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: Rspec and Release | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
rspec: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' | |
ruby: [2.7, '3.0', '3.1'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Test with Rspec | |
run: | | |
bundle exec rspec --format documentation --require spec_helper | |
release: | |
needs: rspec | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_DEPLOYMENT: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Zip | |
run : | | |
zip -r datadog_backup.zip ./* | |
- name: Semantic Release | |
id: semantic | |
uses: cycjimmy/semantic-release-action@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_TOKEN }} | |
with: | |
semantic_version: 17 | |
extra_plugins: | | |
@semantic-release/changelog@5 | |
@semantic-release/git@9 | |
semantic-release-rubygem@1 |