Skip to content

Commit

Permalink
Merge pull request #733 from vlovgr/workflows
Browse files Browse the repository at this point in the history
Update workflows to adoptium:1.11.0.22
  • Loading branch information
vlovgr authored Feb 15, 2024
2 parents 1aa31c5 + ade75c4 commit c7d339e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 37 deletions.
4 changes: 0 additions & 4 deletions .github/release-drafter.yml

This file was deleted.

21 changes: 13 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: ci
on:
push:
branches: ['*']
branches:
- "**"
pull_request:
branches: ['*']
branches:
- "**"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v10
- uses: coursier/cache-action@v5
- run: sbt validate
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.11.0.22
apps: sbt
- run: sbt validate
11 changes: 0 additions & 11 deletions .github/workflows/notes.yml

This file was deleted.

33 changes: 19 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
name: release
on:
push:
branches: ['master']
tags: ['*']
branches:
- "master"
tags:
- "**"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v10
- uses: olafurpg/setup-gpg@v3
- uses: coursier/cache-action@v5
- run: echo "GIT_DEPLOY_KEY=${{ secrets.GIT_DEPLOY_KEY }}" >> $GITHUB_ENV
- run: echo "PGP_PASSPHRASE=${{ secrets.PGP_PASSPHRASE }}" >> $GITHUB_ENV
- run: echo "PGP_SECRET=${{ secrets.PGP_SECRET }}" >> $GITHUB_ENV
- run: echo "SONATYPE_PASSWORD=${{ secrets.SONATYPE_PASSWORD }}" >> $GITHUB_ENV
- run: echo "SONATYPE_USERNAME=${{ secrets.SONATYPE_USERNAME }}" >> $GITHUB_ENV
- run: sbt ci-release docs/docusaurusPublishGhpages
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.11.0.22
apps: sbt
- uses: olafurpg/setup-gpg@v3
- run: echo "GIT_DEPLOY_KEY=${{ secrets.GIT_DEPLOY_KEY }}" >> $GITHUB_ENV
- run: echo "PGP_PASSPHRASE=${{ secrets.PGP_PASSPHRASE }}" >> $GITHUB_ENV
- run: echo "PGP_SECRET=${{ secrets.PGP_SECRET }}" >> $GITHUB_ENV
- run: echo "SONATYPE_PASSWORD=${{ secrets.SONATYPE_PASSWORD }}" >> $GITHUB_ENV
- run: echo "SONATYPE_USERNAME=${{ secrets.SONATYPE_USERNAME }}" >> $GITHUB_ENV
- run: sbt ci-release docs/docusaurusPublishGhpages
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ lazy val sharedNativeSettings = Seq(
lazy val scalaSettings = Seq(
scalaVersion := scala213,
crossScalaVersions := Seq(scala212, scala213),
javacOptions ++= Seq("--release", "8"),
scalacOptions ++= {
val commonScalacOptions =
Seq(
Expand Down

0 comments on commit c7d339e

Please sign in to comment.