Update Repository Manager to 3.68.1-02. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Determine Version | |
run: echo "NXRM_VERSION=$(grep release Dockerfile | cut -d "=" -f2 | tr -d '" \')" >> $GITHUB_ENV | |
- run: echo "Building NXRM ${{ env.NXRM_VERSION }} for ARM" | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_TOKEN }} | |
- name: Build and push Java 8 | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/arm64,linux/amd64 | |
push: true | |
tags: sonatypecommunity/nexus3:latest , sonatypecommunity/nexus3:${{ env.NXRM_VERSION }} | |
- name: Build and push Java 11 | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile.java11 | |
platforms: linux/arm64,linux/amd64 | |
push: true | |
tags: sonatypecommunity/nexus3:${{ env.NXRM_VERSION }}-java11 |