From 6207fd482a685527fda286e0df5d4fa87aa85149 Mon Sep 17 00:00:00 2001 From: nea Date: Sat, 20 Aug 2022 15:48:04 +0200 Subject: subprojectification --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c09ee8..97357be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,11 +8,11 @@ jobs: - uses: actions/setup-java@v1 with: java-version: 8 - - run: ./gradlew clean build + - 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: ./build/distributions + publish_dir: ./example/build/distributions -- cgit