Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@2489e28c66b1217a91b825746a221cfd04965f67
- uses: ruby/setup-ruby@e65c17d16e57e481586a6a5a0282698790062f92
with:
ruby-version: 2.6

Expand All @@ -39,7 +39,7 @@
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
gem build *.gemspec

Check warning on line 42 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Prefix files and paths with "./" or "--" when using glob.

See more on https://sonarcloud.io/project/issues?id=mydatamyconsent_ruby-sdk&issues=AZrwowKEi6A7Mo1o3zsi&open=AZrwowKEi6A7Mo1o3zsi&pullRequest=15

- name: Publish to GPR
run: |
Expand All @@ -52,6 +52,6 @@
- name: Publish to RubyGems
run: |
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec

Check warning on line 55 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Prefix files and paths with "./" or "--" when using glob.

See more on https://sonarcloud.io/project/issues?id=mydatamyconsent_ruby-sdk&issues=AZrwowKEi6A7Mo1o3zsk&open=AZrwowKEi6A7Mo1o3zsk&pullRequest=15
gem push *.gem

Check warning on line 56 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Prefix files and paths with "./" or "--" when using glob.

See more on https://sonarcloud.io/project/issues?id=mydatamyconsent_ruby-sdk&issues=AZrwowKEi6A7Mo1o3zsl&open=AZrwowKEi6A7Mo1o3zsl&pullRequest=15
env:
Expand Down
Loading