Skip to content

Commit

Permalink
Switch to github action build
Browse files Browse the repository at this point in the history
  • Loading branch information
ligangty committed Jan 8, 2024
1 parent 93babb2 commit 0e148b7
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 11 deletions.
60 changes: 49 additions & 11 deletions .github/workflows/merge-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,26 @@ on: [push]

jobs:
publish-snapshot:
name: publish to oss sonatype & push image

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

env:
MAVEN_OPTS: "-Xmx4096m -Xms2048m -XX:MaxMetaspaceSize=4096m -Xss8m"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
# server-id: sonatype
# server-username: SONATYPE_BOT_USERNAME
# server-password: SONATYPE_BOT_TOKEN
distribution: 'temurin'
architecture: x64
java-version: 11

- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v14
Expand All @@ -49,12 +51,48 @@ jobs:
repositories: '[{ "id": "sonatype", "url": "https://oss.sonatype.org/content/repositories/snapshots/", "releases": {"enabled": "false"}, "snapshots": {"enabled": "true" }}]'
servers: '[{ "id": "sonatype", "username": "${{ secrets.SONATYPE_BOT_USERNAME}}", "password": "${{ secrets.SONATYPE_BOT_TOKEN}}" }]'

- name: "Maven Verify"
if: ${{ github.event.repository.fork == true }}
run: mvn -B -e verify

- name: "Maven Build & Deploy Snapshot to Sonatype OSSRH"
if: ${{ github.event.repository.fork == false }}

run: mvn -B -e deploy -DaltDeploymentRepository=sonatype::default::https://oss.sonatype.org/content/repositories/snapshots/

- name: "Maven Build"
if: ${{ github.event.repository.fork == true }}
- name: Checkout tools repo
uses: actions/checkout@v4
with:
repository: Commonjava/commonjava-images
path: commonjava-images

run: mvn -B -e verify
- name: Locate artifacts
id: locate-artifacts
run: |
tarball=$(ls -d $PWD/target/*-runner.jar)
cp "$tarball" "commonjava-images/indy-repository-service/indy-repository-service-runner.jar"
- name: Log in to Quay.io
uses: redhat-actions/podman-login@v1
with:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
registry: quay.io

- name: Buildah build
id: buildah-build
uses: redhat-actions/buildah-build@v2
with:
image: indy-repository-service
tags: ${{ github.ref_name }}
platforms: linux/amd64
containerfiles: |
commonjava-images/indy-repository-service/actions.Dockerfile
context: commonjava-images/indy-repository-service/

- name: Push To quay.io
id: push-to-quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.buildah-build.outputs.image }}
tags: ${{ steps.buildah-build.outputs.tags }}
registry: quay.io/factory2
File renamed without changes.

0 comments on commit 0e148b7

Please sign in to comment.