We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d5d210 commit dbdcd18Copy full SHA for dbdcd18
.github/workflows/release.yml
@@ -10,14 +10,15 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- name: 'Check out repository'
13
- uses: actions/checkout@v2
14
- with:
15
- fetch-depth: 0
+ uses: actions/checkout@v4
16
- name: 'Set up Java'
17
- uses: oracle-actions/setup-java@v1
+ uses: actions/setup-java@v1
+ with:
+ distribution: 'oracle'
18
+ java-version: 21
19
- name: 'Count modules'
20
id: count-modules
- run: echo ::set-output name=size::$(wc --lines < com.github.sormuras.modules/com/github/sormuras/modules/modules.properties)
21
+ run: echo "size=$(wc --lines < com.github.sormuras.modules/com/github/sormuras/modules/modules.properties)" >> $GITHUB_OUTPUT
22
- name: 'Build with Bach'
23
run: |
24
PATH=.bach/bin:$PATH
0 commit comments