We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71ee9f6 commit 67bdf09Copy full SHA for 67bdf09
.github/workflows/build-and-push.yml
@@ -11,8 +11,6 @@ jobs:
11
steps:
12
- name: Checkout code
13
uses: actions/checkout@v4
14
- with:
15
- persist-credentials: false
16
17
- name: Set up JDK 21
18
uses: actions/setup-java@v4
.github/workflows/gh-pages-deploy.yml
@@ -21,11 +21,13 @@ jobs:
21
- name: Make gradlew executable
22
run: chmod +x ./gradlew
23
24
- - name: Build project
25
- run: ./gradlew clean build
+ - name: Build JS artifact
+ run: ./gradlew jsBrowserDistribution
26
+
27
+ - name: List distributions
28
+ run: ls -la build/distributions
29
30
- name: Deploy
- if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
31
uses: JamesIves/github-pages-deploy-action@v4
32
with:
33
branch: gh-pages # The branch the action should deploy to.
0 commit comments