-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (44 loc) · 1.45 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build and publish
on:
push:
branches:
- master
workflow_dispatch:
inputs:
bundle:
type: boolean
description: Build a mapping bundle.
web:
type: boolean
description: Build the documentation site.
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Publish bundle with Gradle
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.bundle == 'true' }}
run: ./gradlew publish
env:
REPO_USERNAME: ${{ secrets.REPO_USERNAME }}
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }}
- name: Publish web with Gradle
run: ./gradlew buildWeb
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.web == 'true' }}
env:
REPO_USERNAME: ${{ secrets.REPO_USERNAME }}
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }}
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.web == 'true' }}
with:
folder: build/takenaka/web
single-commit: true
commit-message: 'build: update with ${{ github.sha }}'