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
15 changes: 15 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,18 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Codecov metrics
uses: codecov/codecov-action@v2

early-access:
name: Early access
if: ${{ github.event_name != 'pull_request' && github.repository_owner == 'project-openubl' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: "temurin"
java-version: 11
- name: Build with Maven and Coverage/Sonar
run: mvn deploy -Pdeploy-early-access
env:
GITHUB_TOKEN: ${{ github.token }}
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,16 @@
</plugins>
</build>
</profile>
<profile>
<id>deploy-early-access</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Project OpenUBL Apache Maven Packages</name>
<url>https://maven.pkg.github.com/project-openubl/xbuilder</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>ci</id>
<activation>
Expand Down