Skip to content

Commit a608da6

Browse files
committed
#RI-6315 - release workflow doesn't run
1 parent 9c701c3 commit a608da6

File tree

4 files changed

+8
-26
lines changed

4 files changed

+8
-26
lines changed

.github/workflows/pipeline-build-linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ jobs:
9797
RI_AI_QUERY_PASS: ${{ secrets.RI_AI_QUERY_PASS }}
9898
RI_AI_QUERY_USER: ${{ secrets.RI_AI_QUERY_USER }}
9999
RI_CLOUD_API_URL: ${{ secrets.RI_CLOUD_API_URL }}
100+
RI_CLOUD_API_TOKEN: ${{ secrets.RI_CLOUD_API_TOKEN }}
100101
RI_CLOUD_CAPI_URL: ${{ secrets.RI_CLOUD_CAPI_URL }}
101102
RI_CLOUD_IDP_AUTHORIZE_URL: ${{ secrets.RI_CLOUD_IDP_AUTHORIZE_URL }}
102103
RI_CLOUD_IDP_CLIENT_ID: ${{ secrets.RI_CLOUD_IDP_CLIENT_ID }}

.github/workflows/pipeline-build-macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ jobs:
127127
RI_AI_CONVAI_TOKEN: ${{ secrets.RI_AI_CONVAI_TOKEN }}
128128
RI_AI_QUERY_PASS: ${{ secrets.RI_AI_QUERY_PASS }}
129129
RI_AI_QUERY_USER: ${{ secrets.RI_AI_QUERY_USER }}
130+
RI_CLOUD_API_TOKEN: ${{ secrets.RI_CLOUD_API_TOKEN }}
130131
RI_CLOUD_API_URL: ${{ secrets.RI_CLOUD_API_URL }}
131132
RI_CLOUD_CAPI_URL: ${{ secrets.RI_CLOUD_CAPI_URL }}
132133
RI_CLOUD_IDP_AUTHORIZE_URL: ${{ secrets.RI_CLOUD_IDP_AUTHORIZE_URL }}

.github/workflows/pipeline-build-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
RI_AI_QUERY_PASS: ${{ secrets.RI_AI_QUERY_PASS }}
7070
RI_AI_QUERY_USER: ${{ secrets.RI_AI_QUERY_USER }}
7171
RI_CLOUD_API_URL: ${{ secrets.RI_CLOUD_API_URL }}
72+
RI_CLOUD_API_TOKEN: ${{ secrets.RI_CLOUD_API_TOKEN }}
7273
RI_CLOUD_CAPI_URL: ${{ secrets.RI_CLOUD_CAPI_URL }}
7374
RI_CLOUD_IDP_AUTHORIZE_URL: ${{ secrets.RI_CLOUD_IDP_AUTHORIZE_URL }}
7475
RI_CLOUD_IDP_CLIENT_ID: ${{ secrets.RI_CLOUD_IDP_CLIENT_ID }}

.github/workflows/tests-integration.yml

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -151,32 +151,11 @@ jobs:
151151
list-suites: 'failed'
152152
fail-on-error: 'false'
153153

154-
- uses: cloudposse/github-action-matrix-outputs-write@v1
155-
id: out
156-
with:
157-
matrix-step-name: ${{ github.job }}
158-
matrix-key: ${{ matrix.rte }}
159-
outputs: |-
160-
link: ${{ steps.test-reporter.outputs.url_html }}
161-
162-
# - name: Add link to report in the workflow summary
163-
# if: always()
164-
# run: |
165-
# link="${{ steps.test-reporter.outputs.url_html }}"
166-
# echo "- [${link}](${link})" >> $GITHUB_STEP_SUMMARY
167-
168-
## Read matrix outputs
169-
read:
170-
runs-on: ubuntu-latest
171-
needs: [run-tests]
172-
steps:
173-
- uses: cloudposse/github-action-matrix-outputs-read@v1
174-
id: read
175-
with:
176-
matrix-step-name: run-tests
177-
178-
outputs:
179-
result: "${{ steps.read.outputs.result }}"
154+
- name: Add link to report in the workflow summary
155+
if: always()
156+
run: |
157+
link="${{ steps.test-reporter.outputs.url_html }}"
158+
echo "- [${link}](${link})" >> $GITHUB_STEP_SUMMARY
180159
181160
coverage:
182161
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)