Skip to content

Commit

Permalink
chore: gha publish job
Browse files Browse the repository at this point in the history
  • Loading branch information
nemo83 committed Jan 16, 2024
1 parent d906f3c commit ce694f5
Show file tree
Hide file tree
Showing 7 changed files with 108 additions and 0 deletions.
85 changes: 85 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Build and Publish Docker images

on:
push:
branches:
- main
workflow_dispatch:

env:
PRIVATE_DOCKER_REGISTRY_URL: ${{ secrets.GITLAB_DOCKER_REGISTRY_URL }}
PRIVATE_DOCKER_REGISTRY_USER: Deploy-Token
PRIVATE_DOCKER_REGISTRY_PASS: ${{ secrets.GITLAB_PKG_REGISTRY_TOKEN }}

jobs:

build-version:
runs-on: ubuntu-latest
outputs:
ARTIFACT_VERSION: ${{ steps.metadata.outputs.ARTIFACT_VERSION }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup dependencies
run: |
pip install yq
- name: Set extra environment and metadata
id: metadata
run: |
CURRENT_VERSION=$(cat version.txt)
if [ ${{github.event_name}} == "pull_request" ]
then
PR_NUMBER=$(echo $GITHUB_REF | awk -F/ '{ print $3 }')
echo "ARTIFACT_VERSION=${CURRENT_VERSION}-PR${PR_NUMBER}-$GITHUB_RUN_NUMBER" >> "$GITHUB_OUTPUT"
else
BRANCH=${GITHUB_REF##*/}
echo "BRANCH=${GITHUB_REF##*/}" >> "$GITHUB_OUTPUT"
echo "ARTIFACT_VERSION=${CURRENT_VERSION}" >> "$GITHUB_OUTPUT"
fi
api:
runs-on: ubuntu-latest
env:
APP_NAME: cf-metadata-server-api
needs: build-version
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '18'
cache: maven

- name: Build
run: mvn clean package

- name: Private Docker Hub Login
uses: docker/login-action@v2
with:
registry: ${{ env.PRIVATE_DOCKER_REGISTRY_URL }}
username: ${{ env.PRIVATE_DOCKER_REGISTRY_USER }}
password: ${{ env.PRIVATE_DOCKER_REGISTRY_PASS }}

- name: Public Docker Hub Login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and Push docker image
uses: docker/build-push-action@v4
env:
ARTIFACT_VERSION: ${{needs.build-version.outputs.ARTIFACT_VERSION}}
with:
context: api
push: true
tags: |
${{ env.PRIVATE_DOCKER_REGISTRY_URL }}/${{ env.APP_NAME }}:${{ env.ARTIFACT_VERSION }}
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create a new Release

on:
push:
branches: ['main']

workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
create_release:
runs-on: self-hosted
steps:
- name: πŸš€ release-please-action
uses: google-github-actions/release-please-action@v3
with:
release-type: simple
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ce694f5

Please sign in to comment.