Skip to content

Commit

Permalink
#493 wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Nov 11, 2024
1 parent de8a5af commit ec8d38a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '11', '17' ] # scalac 3.2.2 doesn't work on jdk 21+
java: [ '11', '17', '21' ]
scala: [ '2.11', '2.12', '2.13', '3' ]
steps:
- uses: 7mind/github-env@minimal
Expand All @@ -49,8 +49,7 @@ jobs:

publish-artifacts:
runs-on: ubuntu-latest
# needs: [ 'build', 'checksecret' ]
needs: [ 'checksecret' ]
needs: [ 'build', 'checksecret' ]
if: needs.checksecret.outputs.HAVE_SECRETS == 'true'
strategy:
matrix:
Expand Down Expand Up @@ -80,8 +79,8 @@ jobs:
name: Release and Notify Docs
runs-on: ubuntu-latest
continue-on-error: false
# needs: [ 'build', 'checksecret' ]
needs: [ 'checksecret' ]
needs: [ 'build', 'checksecret' ]
if: needs.checksecret.outputs.HAVE_SECRETS == 'true'
#if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
strategy:
matrix:
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
nodePackages.npm

gitMinimal
gnupg
];

shellHook = ''
Expand Down

0 comments on commit ec8d38a

Please sign in to comment.