Skip to content

Commit 95f271b

Browse files
committed
Disable javadoc workflow.
Update scheduled test pipeline.
1 parent 16db0cd commit 95f271b

File tree

2 files changed

+27
-31
lines changed

2 files changed

+27
-31
lines changed

.github/workflows/javadoc.yml

Lines changed: 25 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,25 @@
1-
name: javadoc
2-
on:
3-
push:
4-
branches:
5-
- main
6-
jobs:
7-
javadoc:
8-
runs-on: ubuntu-latest
9-
concurrency: docs-${{ github.ref }}
10-
name: 📚 Docs
11-
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v3
14-
with:
15-
persist-credentials: false
16-
17-
- name: Set up Node.js 14
18-
uses: actions/setup-node@v3
19-
with:
20-
node-version: 14
21-
22-
- name: Generate doc
23-
run: ./gradlew --no-daemon javadoc
24-
25-
- name: Deploy
26-
uses: JamesIves/github-pages-deploy-action@v4
27-
with:
28-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29-
BRANCH: gh-pages
30-
FOLDER: build/docs/javadoc/
1+
#name: javadoc
2+
#on:
3+
# push:
4+
# branches:
5+
# - main
6+
#jobs:
7+
# javadoc:
8+
# runs-on: ubuntu-latest
9+
# concurrency: docs-${{ github.ref }}
10+
# name: 📚 Docs
11+
# steps:
12+
# - name: Checkout
13+
# uses: actions/checkout@v3
14+
# with:
15+
# persist-credentials: false
16+
#
17+
# - name: Generate doc
18+
# run: ./gradlew --no-daemon javadoc
19+
#
20+
# - name: Deploy
21+
# uses: JamesIves/github-pages-deploy-action@v4
22+
# with:
23+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
# BRANCH: gh-pages
25+
# FOLDER: build/docs/javadoc/

.github/workflows/scheduled_test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ on:
88

99
jobs:
1010
test:
11+
environment: ci
1112
runs-on: ubuntu-latest
1213
steps:
1314
- uses: actions/checkout@v3
14-
1515
- name: Run tests
1616
env:
17+
STREAM_BASE_URL: ${{ vars.STREAM_BASE_URL }}
1718
STREAM_API_KEY: ${{ vars.STREAM_API_KEY }}
1819
STREAM_API_SECRET: ${{ secrets.STREAM_API_SECRET }}
1920
run: |

0 commit comments

Comments
 (0)