Skip to content

Commit

Permalink
fix(ci): publish java modules to snapshots repo
Browse files Browse the repository at this point in the history
Closes #5023
  • Loading branch information
squakez committed Jan 9, 2024
1 parent dd42fa8 commit 9cfd51d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/actions/release-nightly/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,14 @@ runs:
replacesArtifacts: true
tag: ${{ env.VERSION }}
commit: main
# If release was okey, we can also release the CRD Fabric8 extensions
# If release was okey, we can also release the java extensions
- name: Deploy Camel-K-CRDs to ASF Snapshots Repository
working-directory: java
working-directory: java/crds
shell: bash
run: |
./mvnw clean deploy --settings ../.github/asf-deploy-settings.xml -q
mvn clean deploy --settings ../.github/asf-deploy-settings.xml -q
- name: Deploy Camel-K-maven-logging to ASF Snapshots Repository
working-directory: java/maven-logging
shell: bash
run: |
mvn clean deploy --settings ../.github/asf-deploy-settings.xml -q

0 comments on commit 9cfd51d

Please sign in to comment.