We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796b4db commit 1229fe8Copy full SHA for 1229fe8
.github/workflows/ci.yml
@@ -33,14 +33,18 @@ jobs:
33
bundle install
34
35
- name: Get GitHub OIDC Token
36
- if: github.repository == 'stainless-sdks/finch-ruby'
+ if: |-
37
+ github.repository == 'stainless-sdks/finch-ruby' &&
38
+ !startsWith(github.ref, 'refs/heads/stl/')
39
id: github-oidc
40
uses: actions/github-script@v8
41
with:
42
script: core.setOutput('github_token', await core.getIDToken());
43
44
- name: Build and upload gem artifacts
45
46
47
48
env:
49
URL: https://pkg.stainless.com/s
50
AUTH: ${{ steps.github-oidc.outputs.github_token }}
0 commit comments