Skip to content

Commit 886cd88

Browse files
committed
try to fix the deploy gh-pages issue
1 parent a2a4e97 commit 886cd88

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Java CI with Gradle
2-
on: [push pull_request]
2+
on: [push, pull_request]
33
jobs:
44
build:
55
runs-on: ubuntu-latest

.github/workflows/generate-docs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Deploy static content to Pages
22

33
on:
44
push:
5-
# tags:
6-
# - 'v*'
5+
tags:
6+
- 'v*'
7+
branches:
8+
- master
79

810
# Allows you to run this workflow manually from the Actions tab
911
workflow_dispatch:
@@ -35,7 +37,7 @@ jobs:
3537
uses: actions/setup-java@v2
3638
with:
3739
distribution: 'zulu'
38-
java-version: '17'
40+
java-version: '11'
3941
- name: Grant execute permission for gradlew
4042
run: chmod +x gradlew
4143
- name: Unit Test

0 commit comments

Comments
 (0)