We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 037dbcd commit 2b236e9Copy full SHA for 2b236e9
.github/workflows/ci.yml
@@ -65,14 +65,18 @@ jobs:
65
run: ./scripts/build
66
67
- name: Get GitHub OIDC Token
68
- if: github.repository == 'stainless-sdks/orb-java'
+ if: |-
69
+ github.repository == 'stainless-sdks/orb-java' &&
70
+ !startsWith(github.ref, 'refs/heads/stl/')
71
id: github-oidc
72
uses: actions/github-script@v8
73
with:
74
script: core.setOutput('github_token', await core.getIDToken());
75
76
- name: Build and upload Maven artifacts
77
78
79
80
env:
81
URL: https://pkg.stainless.com/s
82
AUTH: ${{ steps.github-oidc.outputs.github_token }}
0 commit comments