Update Mill to build the plugin to 0.11 #81
Workflow file for this run
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: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Mill cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.mill | |
key: mill-${{ hashFiles('.mill-version') }} | |
- name: Ivy cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/coursier | |
key: ivy-${{ hashFiles('build.sc') }} | |
restore-keys: | | |
ivy-${{ hashFiles('build.sc') }} | |
ivy | |
- name: Compilation cache | |
uses: actions/cache@v2 | |
with: | |
path: ./out | |
key: out | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '8' | |
architecture: x64 | |
- name: Check formatting | |
run: | |
./mill --no-server --disable-ticker mill.scalalib.scalafmt.ScalafmtModule/checkFormatAll __.sources | |
- name: Check scalafix | |
run: | |
./mill --no-server --disable-ticker __.fix --check | |
- name: Compile | |
run: | |
./mill --no-server --disable-ticker __.compile | |
- name: Publish Artifacts | |
run: | |
./mill --no-server --disable-ticker __.publishArtifacts | |
- name: Test | |
run: | |
./mill --no-server --disable-ticker __.test | |
publish-sonatype: | |
if: github.repository == 'lolgab/mill-crossplatform' && contains(github.ref, 'refs/tags/') | |
needs: build | |
runs-on: ubuntu-22.04 | |
env: | |
SONATYPE_PGP_PRIVATE_KEY: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY }} | |
SONATYPE_PGP_PRIVATE_KEY_PASSWORD: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY_PASSWORD }} | |
SONATYPE_USER: ${{ secrets.SONATYPE_USER }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
LANG: "en_US.UTF-8" | |
LC_MESSAGES: "en_US.UTF-8" | |
LC_ALL: "en_US.UTF-8" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Mill cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.mill | |
key: mill-${{ hashFiles('.mill-version') }} | |
- name: Ivy cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/coursier | |
key: ivy-${{ hashFiles('build.sc') }} | |
restore-keys: | | |
ivy-${{ hashFiles('build.sc') }} | |
ivy | |
- name: Compilation cache | |
uses: actions/cache@v2 | |
with: | |
path: ./out | |
key: out | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '8' | |
architecture: x64 | |
- name: Publish to Maven Central | |
run: | | |
if [[ $(git tag --points-at HEAD) != '' ]]; then | |
echo $SONATYPE_PGP_PRIVATE_KEY | base64 --decode > gpg_key | |
gpg --import --no-tty --batch --yes gpg_key | |
rm gpg_key | |
./mill --no-server --disable-ticker mill.scalalib.PublishModule/publishAll \ | |
--sonatypeCreds $SONATYPE_USER:$SONATYPE_PASSWORD \ | |
--gpgArgs --passphrase=$SONATYPE_PGP_PRIVATE_KEY_PASSWORD,--no-tty,--pinentry-mode,loopback,--batch,--yes,-a,-b \ | |
--publishArtifacts __.publishArtifacts \ | |
--readTimeout 600000 \ | |
--awaitTimeout 600000 \ | |
--release true \ | |
--signed true | |
fi |