|
1 | | -name: Compose Publish Dry Run |
2 | | -on: |
3 | | - workflow_dispatch: |
4 | | - pull_request: |
5 | | - push: |
6 | | - branches: |
7 | | - - jb-main |
8 | | - |
9 | | -jobs: |
10 | | - compose-native-publish: |
11 | | - runs-on: macos-15-xlarge |
12 | | - name: Dry Run Compose Publish Darwin + Native Linux |
13 | | - steps: |
14 | | - - name: Checkout Repository |
15 | | - uses: actions/checkout@v5 |
16 | | - |
17 | | - - name: Setup Prerequisites |
18 | | - uses: ./.github/actions/setup-prerequisites |
19 | | - |
20 | | - - name: Setup Xcode |
21 | | - uses: ./.github/actions/setup-xcode |
22 | | - |
23 | | - - name: Compose Publish Darwin + Native Linux |
24 | | - run: | |
25 | | - ./gradlew publishComposeJb -Pcompose.platforms=macos,ios,tvos,watchos,linux,mingw \ |
26 | | - --no-daemon --stacktrace |
27 | | -
|
28 | | - compose-web-publish: |
29 | | - runs-on: ubuntu-24.04 |
30 | | - name: Dry Run Compose Publish Web |
31 | | - steps: |
32 | | - - name: Checkout Repository |
33 | | - uses: actions/checkout@v5 |
34 | | - |
35 | | - - name: Setup Prerequisites |
36 | | - uses: ./.github/actions/setup-prerequisites |
37 | | - |
38 | | - - name: Compose Publish Web |
39 | | - run: | |
40 | | - ./gradlew publishComposeJb -Pcompose.platforms=web \ |
41 | | - --no-daemon --stacktrace |
42 | | -
|
43 | | - compose-jvm-publish: |
44 | | - runs-on: ubuntu-24.04 |
45 | | - name: Dry Run Compose Publish JVM |
46 | | - steps: |
47 | | - - name: Checkout Repository |
48 | | - uses: actions/checkout@v5 |
49 | | - |
50 | | - - name: Setup Prerequisites |
51 | | - uses: ./.github/actions/setup-prerequisites |
52 | | - |
53 | | - - name: Compose Publish JVM |
54 | | - run: | |
55 | | - ./gradlew publishComposeJb -Pcompose.platforms=jvm,android \ |
56 | | - --no-daemon --stacktrace |
| 1 | +#name: Compose Publish Dry Run |
| 2 | +#on: |
| 3 | +# workflow_dispatch: |
| 4 | +# pull_request: |
| 5 | +# push: |
| 6 | +# branches: |
| 7 | +# - jb-main |
| 8 | +# |
| 9 | +#jobs: |
| 10 | +# compose-native-publish: |
| 11 | +# runs-on: macos-15-xlarge |
| 12 | +# name: Dry Run Compose Publish Darwin + Native Linux |
| 13 | +# steps: |
| 14 | +# - name: Checkout Repository |
| 15 | +# uses: actions/checkout@v5 |
| 16 | +# |
| 17 | +# - name: Setup Prerequisites |
| 18 | +# uses: ./.github/actions/setup-prerequisites |
| 19 | +# |
| 20 | +# - name: Setup Xcode |
| 21 | +# uses: ./.github/actions/setup-xcode |
| 22 | +# |
| 23 | +# - name: Compose Publish Darwin + Native Linux |
| 24 | +# run: | |
| 25 | +# ./gradlew publishComposeJb -Pcompose.platforms=macos,ios,tvos,watchos,linux,mingw \ |
| 26 | +# --no-daemon --stacktrace |
| 27 | +# |
| 28 | +# compose-web-publish: |
| 29 | +# runs-on: ubuntu-24.04 |
| 30 | +# name: Dry Run Compose Publish Web |
| 31 | +# steps: |
| 32 | +# - name: Checkout Repository |
| 33 | +# uses: actions/checkout@v5 |
| 34 | +# |
| 35 | +# - name: Setup Prerequisites |
| 36 | +# uses: ./.github/actions/setup-prerequisites |
| 37 | +# |
| 38 | +# - name: Compose Publish Web |
| 39 | +# run: | |
| 40 | +# ./gradlew publishComposeJb -Pcompose.platforms=web \ |
| 41 | +# --no-daemon --stacktrace |
| 42 | +# |
| 43 | +# compose-jvm-publish: |
| 44 | +# runs-on: ubuntu-24.04 |
| 45 | +# name: Dry Run Compose Publish JVM |
| 46 | +# steps: |
| 47 | +# - name: Checkout Repository |
| 48 | +# uses: actions/checkout@v5 |
| 49 | +# |
| 50 | +# - name: Setup Prerequisites |
| 51 | +# uses: ./.github/actions/setup-prerequisites |
| 52 | +# |
| 53 | +# - name: Compose Publish JVM |
| 54 | +# run: | |
| 55 | +# ./gradlew publishComposeJb -Pcompose.platforms=jvm,android \ |
| 56 | +# --no-daemon --stacktrace |
0 commit comments