Skip to content

Update zio to 2.1.9 (#428) #13

Update zio to 2.1.9 (#428)

Update zio to 2.1.9 (#428) #13

name: Publish snapshot
on:
workflow_dispatch:
push:
branches:
- main
jobs:
compile-all:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: jodersky/[email protected]
with:
mill-version: 0.11.12
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Set version
run: sed -i "s/publishVersion = \"\(.*\)\"/publishVersion = \"\1-$(echo ${GITHUB_SHA} | cut -c1-8)-SNAPSHOT\"/g" build.sc
- name: Publish
shell: bash
env:
USERNAME: ${{ secrets.OSS_USERNAME }}
PASSWORD: ${{ secrets.OSS_PASSWORD }}
run: |
mill mill.scalalib.PublishModule/publishAll __.publishArtifacts --sonatypeCreds "$USERNAME:$PASSWORD"