added DB_URL to .env to be configurable for local setup, added docker… #44
Workflow file for this run
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 Publish Docker images | |
on: | |
push: | |
branches: | |
- main | |
- feat/push-docker-to-public-repo | |
workflow_dispatch: | |
env: | |
DOCKER_REPO: cardanofoundation | |
DOCKER_REGISTRY_USER: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKER_REGISTRY_PASS: ${{ secrets.DOCKERHUB_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-token-metadata-registry-api | |
needs: build-version | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: maven | |
- name: Build | |
run: mvn clean package | |
- name: Private Docker Hub Login | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ env.DOCKER_REGISTRY_USER }} | |
password: ${{ env.DOCKER_REGISTRY_PASS }} | |
- 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.DOCKER_REPO }}/${{ env.APP_NAME }}:${{ env.ARTIFACT_VERSION }} | |
job: | |
runs-on: ubuntu-latest | |
env: | |
APP_NAME: cf-token-metadata-registry-job | |
needs: build-version | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: maven | |
- name: Build | |
run: mvn clean package | |
- name: Private Docker Hub Login | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ env.DOCKER_REGISTRY_USER }} | |
password: ${{ env.DOCKER_REGISTRY_PASS }} | |
- 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: job | |
push: true | |
tags: | | |
${{ env.DOCKER_REPO }}/${{ env.APP_NAME }}:${{ env.ARTIFACT_VERSION }} |