Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/publish-release-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish All Libraries Release

# Manually triggered release of every library at once.
# Each library runs as its own parallel job via the shared release workflow,
# and a failure in one does not cancel the others.
on:
workflow_dispatch:

jobs:
publish-release:
name: Publish ${{ matrix.project }}
strategy:
fail-fast: false
matrix:
project: [ compose, compose-semantics, compose-test, compose-ui ]
uses: ./.github/workflows/publish-release-workflow.yaml
with:
project: ${{ matrix.project }}
secrets: inherit
7 changes: 4 additions & 3 deletions .github/workflows/publish-release-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ jobs:
name: Deploy ${{ inputs.project }} to OSSHR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
- uses: little-core-labs/get-git-tag@v3.0.2
cache: gradle
- name: Deploy Release to OSSRH
run: ./gradlew :$PROJECT:publishDefaultPublicationToOSSHRRepository -PreleaseMode=RELEASE
env:
Expand Down
6 changes: 1 addition & 5 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android.useAndroidX=true
kotlin.code.style=official

# Kakao Compose libraries versions
lib.version.compose=1.1.0
lib.version.compose-semantics=1.1.0
lib.version.compose-ui=1.1.0
lib.version.compose-test=1.1.0
lib.version.compose=1.1.1
lib.version.compose-semantics=1.1.1
lib.version.compose-ui=1.1.1
lib.version.compose-test=1.1.1
Loading