summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 97357beafc97e01f854e8ffa5186a883f18a8bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout/@v2
      - uses: actions/setup-java@v1
        with:
          java-version: 8
      - run: ./gradlew clean :example:build
      - name: Github Pages
        uses: peaceiris/actions-gh-pages@v3
        if: ${{ github.ref == 'refs/heads/master' }}
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./example/build/distributions