File tree Expand file tree Collapse file tree 2 files changed +27
-31
lines changed
Expand file tree Collapse file tree 2 files changed +27
-31
lines changed Original file line number Diff line number Diff line change 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/
Original file line number Diff line number Diff line change 88
99jobs :
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 : |
You can’t perform that action at this time.
0 commit comments