This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
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: Build and Deploy Docker Image to Nexus | ||
on: | ||
push: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
type: string | ||
description: Released version of jtd-codegen to retrieve from public repo and build into the docker image | ||
required: true | ||
default: v0.4.1 | ||
jobs: | ||
build-and-deploy-nexus: | ||
runs-on: self-hosted-ubuntu-latest | ||
permissions: | ||
id-token: read | ||
contents: write | ||
steps: | ||
- name: Calc Build | ||
id: calc | ||
run: | | ||
BUILD_NUM=$((${{ env.OLD_BUILD }}+${{ github.run_number }})) | ||
echo "Build Number: $BUILD_NUM" | ||
echo "build-num=$BUILD_NUM" >> $GITHUB_OUTPUT | ||
shell: bash | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Login to MFJ Nexus Docker registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: docker.mfj.io | ||
username: jenkins # This is docker.mfj.io username we're using | ||
password: ${{ secrets.NEXUS_PUSH_RW_PASSWORD }} # docker.mfj.io jenkins password (stored as GH secret) | ||
# - name: Build and Push to MFJ Nexus Docker Registry | ||
# env: | ||
# VERSION: ${{ inputs.version }} | ||
# run: | | ||
# docker build --pull --no-cache -t docker.mfj.io/jsontypedef/jtd-codegen:$VERSION --build-arg version=$VERSION jtd-codegen | ||
# docker push docker.mfj.io/jsontypedef/jtd-codegen:$VERSION | ||
# docker rmi docker.mfj.io/jsontypedef/jtd-codegen:$VERSION | ||
# shell: bash | ||
# - name: Create Tag ${{ inputs.version }} | ||
# uses: rickstaa/action-create-tag@v1 | ||
# id: tag-create | ||
# with: | ||
# tag: ${{ inputs.version }} | ||
# tag_exists_error: false | ||
# message: "Tagged publish source: ${{ inputs.version }}" |