Fix issue with denoiser renderer when rendering fewer samples than albedo/normal pass samples. #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Plugin Build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| java-package: jdk | |
| - name: Grant executable permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew pluginJar | |
| - name: Upload the plugin Jar | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ChunkyDenoiser | |
| path: build/libs/*.jar | |
| if-no-files-found: error |