Skip to content

Commit 2304a75

Browse files
committed
just debugging the workflow
1 parent a8e11b9 commit 2304a75

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

.github/workflows/ci-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release Publisher
1+
name: 'Publish (Java): RELEASE'
22
on:
33
push:
44
tags:

.github/workflows/ci-snapshot.yml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
name: Snapshot Publisher
1+
name: 'Publish (Java): SNAPSHOT'
2+
# on:
3+
# push:
4+
# branches: [ main ]
5+
# tags-ignore:
6+
# - "[0-9]+.[0-9]+.[0-9]+(-[0-9a-z]+)?"
7+
# paths-ignore:
8+
# - 'docs/**'
9+
# - 'scripts/**'
10+
# - '.github/pull_request_template.md'
11+
# - '.gitignore'
12+
# - 'gradlew'
13+
# - 'gradlew.bat'
14+
# - '**.adoc'
15+
# - '*.txt'
216
on:
3-
push:
4-
branches: [ main ]
5-
tags-ignore:
6-
- "[0-9]+.[0-9]+.[0-9]+(-[0-9a-z]+)?"
7-
paths-ignore:
8-
- 'docs/**'
9-
- 'scripts/**'
10-
- '.github/pull_request_template.md'
11-
- '.gitignore'
12-
- 'gradlew'
13-
- 'gradlew.bat'
14-
- '**.adoc'
15-
- '*.txt'
17+
pull_request:
18+
types: [opened, reopened, synchronize]
1619
jobs:
1720
build:
1821
name: Release JDK (${{ matrix.os_version }} swift:${{ matrix.swift_version }} jdk:${{matrix.jdk_vendor}})
@@ -23,7 +26,7 @@ jobs:
2326
swift_version: ['6.1.3']
2427
os_version: ['jammy']
2528
jdk_vendor: ['corretto']
26-
java: ['25']
29+
java: ['24']
2730
container:
2831
image: ${{ (contains(matrix.swift_version, 'nightly') && 'swiftlang/swift') || 'swift' }}:${{ matrix.swift_version }}-${{ matrix.os_version }}
2932
steps:

0 commit comments

Comments
 (0)