Skip to content

Commit 3cdbc1f

Browse files
committed
Fix pages workflow branch
1 parent edd8d9b commit 3cdbc1f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/bld.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: bld-ci
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on: [ push, pull_request, workflow_dispatch ]
44

55
jobs:
66
build-bld-project:
77
strategy:
88
matrix:
9-
java-version: [17, 21, 24]
10-
os: [ubuntu-latest, windows-latest, macos-latest]
9+
java-version: [ 17, 21, 24 ]
10+
os: [ ubuntu-latest, windows-latest, macos-latest ]
1111

1212
runs-on: ${{ matrix.os }}
1313

@@ -27,7 +27,7 @@ jobs:
2727
working-directory: example
2828
run: ./bld download
2929

30-
- name: Compile and run tests [examples]
30+
- name: Compile and run tests [example]
3131
working-directory: example
3232
run: ./bld compile test
3333

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: javadocs-pages
33
on:
44
# Runs on pushes targeting the default branch
55
push:
6-
branches: ["master"]
6+
branches: [ "main" ]
77

88
# Allows you to run this workflow manually from the Actions tab
99
workflow_dispatch:

0 commit comments

Comments
 (0)