Update actions.yml #259
This file contains 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: ci | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17', '21' ] | |
name: Tests for Java ${{ matrix.Java }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
run: | | |
set -eux | |
./mill -ikj1 --disable-ticker __.testLocal | |
test-examples: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17', '21' ] | |
name: Tests for Java ${{ matrix.Java }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
run: | | |
set -eux | |
./mill __.publishLocal | |
./mill -ikj1 --disable-ticker testExamples | |
publish-sonatype: | |
if: github.repository == 'com-lihaoyi/cask' && contains(github.ref, 'refs/tags/') | |
needs: test | |
runs-on: ubuntu-latest | |
env: | |
MILL_SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
MILL_SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
MILL_PGP_SECRET_BASE64: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY }} | |
MILL_PGP_PASSPHRASE: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY_PASSWORD }} | |
LANG: "en_US.UTF-8" | |
LC_MESSAGES: "en_US.UTF-8" | |
LC_ALL: "en_US.UTF-8" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Publish to Maven Central | |
run: ./mill -i mill.scalalib.PublishModule/ | |
uploadExamples: | |
if: github.repository == 'com-lihaoyi/cask' && contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
env: | |
AMMONITE_BOT_AUTH_TOKEN: ${{ secrets.AMMONITE_BOT_AUTH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Upload Example Zips | |
run: ./mill uploadToGithub | |
generate_docs: | |
if: github.repository == 'com-lihaoyi/cask' | |
runs-on: ubuntu-20.04 | |
env: | |
LANG: "en_US.UTF-8" | |
LC_MESSAGES: "en_US.UTF-8" | |
LC_ALL: "en_US.UTF-8" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Generate Website | |
run: | | |
cd docs | |
./amm build.sc | |
- name: Deploy Website | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/target | |
publish_branch: gh-pages |