We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ecc053 commit 41f4974Copy full SHA for 41f4974
.github/workflows/default.yml
@@ -1,4 +1,4 @@
1
-name: CI
+name: Build Docs
2
3
on:
4
# Triggers the workflow on push or pull request events but only for the master branch
@@ -12,18 +12,14 @@ on:
12
13
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
jobs:
15
- # This workflow contains a single job called "build"
16
build:
17
- # The type of runner that the job will run on
18
runs-on: ubuntu-latest
19
20
- # Steps represent a sequence of tasks that will be executed as part of the job
21
steps:
22
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23
- uses: actions/checkout@v2
24
25
- # Build everything
26
- - name: Run a one-line script
+ - name: Build Docs
27
run: ./gradlew run
28
29
- name: Deploy to GitHub Pages
0 commit comments