Skip to content

Release

Release #10

Workflow file for this run

name: Release
on:
workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/[email protected]
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "GPP Informatics"
- uses: jrouly/scalafmt-native-action@v2
with:
version: '3.5.8'
- name: Set up JDK 8
uses: actions/[email protected]
with:
java-version: '8'
distribution: 'temurin'
- run: sbt "scalafixAll --check"
- name: Run tests
run: make test-all
- name: Release
run: sbt "release cross with-defaults"