We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d025a55 commit 4ad4d5dCopy full SHA for 4ad4d5d
.github/workflows/deploy-to-updatesite.yml
@@ -1,3 +1,5 @@
1
+name: Deploy Update-Site
2
+
3
on:
4
push:
5
branches: [main,updatesite-deployment]
@@ -6,5 +8,21 @@ jobs:
6
8
build:
7
9
runs-on: ubuntu-latest
10
steps:
- - name: Test
- run: echo 'test'
11
+ - name: Checkout
12
+ uses: actions/checkout@v4
13
+ - name: Set up the JDK
14
+ uses: actions/setup-java@v4
15
+ with:
16
+ distribution: 'temurin'
17
+ java-version: 17
18
+ cache: maven
19
+ - name: Build
20
+ run: mvn clean verify
21
+ - name: Publish Update-Site
22
+ uses: peaceiris/actions-gh-pages@v4
23
24
+ personal_token: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }}
25
+ external_repository: CASCADE-AnalysisCoupling/updatesite
26
+ destination_dir: framework/
27
+ publish_dir: Updatesite/target/repository
28
+ publish_branch: main
0 commit comments