File tree Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ jobs:
22
22
runs-on : ubuntu-latest
23
23
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout
26
26
- name : Set up JDK 11
27
- uses : actions/setup-java@v3
27
+ uses : actions/setup-java
28
28
with :
29
29
java-version : ' 11'
30
30
distribution : ' temurin'
31
31
- name : Build with Gradle
32
- uses : gradle/gradle-build-action@v2.4.2
32
+ uses : gradle/gradle-build-action
33
33
with :
34
- arguments : check
34
+ arguments : build check publish
Original file line number Diff line number Diff line change 1
1
name : Sphinx Pages
2
- on : [push, workflow_dispatch]
2
+ on :
3
+ push :
4
+ branches : [ "master" ]
5
+ pull_request :
6
+ branches : [ "master" ]
7
+
3
8
permissions : write-all
4
9
jobs :
5
10
docs :
Original file line number Diff line number Diff line change @@ -538,12 +538,12 @@ publishing {
538
538
url = version. endsWith(' SNAPSHOT' ) ? snapshotsRepoUrl : releasesRepoUrl
539
539
credentials(PasswordCredentials )
540
540
}
541
- maven {
542
- name = " GitHubPackages"
543
-
544
- url = uri(" https://maven.pkg.github.com/JSQLParser/jsqlparser" )
545
- credentials(PasswordCredentials )
546
- }
541
+ // maven {
542
+ // name = "GitHubPackages"
543
+ //
544
+ // url = uri("https://maven.pkg.github.com/JSQLParser/jsqlparser")
545
+ // credentials(PasswordCredentials)
546
+ // }
547
547
}
548
548
}
549
549
You can’t perform that action at this time.
0 commit comments