Skip to content

Commit

Permalink
Merge pull request #123 from ZettaScaleLabs/ci-snapshots
Browse files Browse the repository at this point in the history
Enabling snapshot publications for dev/1.0.0 on the CI
  • Loading branch information
kydos authored Jul 5, 2024
2 parents f7bc0a0 + 91897ed commit 4500cc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# Publish snapshot packages. These jobs will only be triggered when the CI is executed on main.
publish_jvm_snapshot_package:
name: Publish JVM snapshot package
if: github.ref == 'refs/heads/main'
if: contains(['refs/heads/main', 'refs/heads/dev/1.0.0'], github.ref)
needs: ci
uses: ./.github/workflows/publish-jvm.yml
permissions:
Expand All @@ -94,7 +94,7 @@ jobs:

publish_android_snapshot_package:
name: Publish Android snapshot package
if: github.ref == 'refs/heads/main'
if: contains(['refs/heads/main', 'refs/heads/dev/1.0.0'], github.ref)
needs: ci
uses: ./.github/workflows/publish-android.yml
permissions:
Expand Down

0 comments on commit 4500cc4

Please sign in to comment.