aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dokka-examples.yml
AgeCommit message (Collapse)Author
2023-04-21Clean up GitHub workflows (#2951)Ignat Beresnev
* Run Gradle wrapper checksum less often * Do not publish examples as artifacts in internal PRs
2023-03-30Use Java 17 for setup-java in GitHub Actions (#2938)Goooler
2023-03-27Enable gradle-home-cache-cleanup (#2939)Goooler
For more information see https://github.com/gradle/gradle-build-action/blob/main/README.md#removing-unused-files-from-gradle-user-home-before-saving-to-cache
2023-01-30Add concurrency cancellation for test/build GitHub Actions (#2710)aSemy
The GitHub Actions build queue can get 'stacked up' if there are a few smaller commits in quick succession. Since the actions take some time, some small commits can cause the GHA build queue to get congested. This adds a 'concurrency' check for GitHub actions. It means that if a newer trigger comes in (for example, if you make two commits in a row on a PR), then the first job will be cancelled, allowing for the new job to run. This helps save energy, and for faster feedback in PRs. Reference docs: https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-concurrency-to-cancel-any-in-progress-job-or-run
2023-01-19Revise README documentation for examples and plugins (#2736)Ignat Beresnev
2022-12-13Enable caching Maven dependencies for `setup-java` GitHub Action (#2722)aSemy
2022-03-24Optimize CI a bit (#2385)Goooler
* Bump actions/checkout to v3 * Bump actions/setup-java to v3 * Use gradle-build-action * Merge validation into check.yml * Reformat * Trim blank lines * Use https * Cleanup * Fix * Remove names * Cleanup * Rename validate to validate-wrapper * Use cirrus-actions/rebase@v1.5 * Use cirrus-actions/rebase@1.5
2021-09-22Bump setup-java github actions to v2 (#2151)Goooler
2021-07-28Migrate Dokka examples to Dokka repo (KT-47798) (#2030)vmishenev
* Migrate Dokka examples to Dokka repo (KT-47798) * Configure workflow of examples checking * Add workflow to deploy examples