Merge pull request #2 from formelio/adjust-workflows #2
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 Docker images' | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- master | |
env: | |
image_registry: europe-west4-docker.pkg.dev/ivido-development | |
jobs: | |
build-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Set version params | |
id: version | |
shell: bash | |
run: | | |
echo "::set-output name=git_commit::$(echo ${GITHUB_SHA})" | |
echo "::set-output name=git_branch::$(echo ${GITHUB_REF#refs/heads/})" | |
echo "::set-output name=git_version::$(git name-rev --tags --name-only $(git rev-parse HEAD))" | |
- name: Print version params | |
run: | | |
echo "Commit: ${{ steps.version.outputs.git_commit }}" | |
echo "Branch: ${{ steps.version.outputs.git_branch }}" | |
echo "Version: ${{ steps.version.outputs.git_version }}" | |
- name: Docker meta | |
id: docker_meta | |
- name: Login to image registry | |
uses: docker/login-action@v3 | |
with: | |
registry: europe-west4-docker.pkg.dev | |
username: _json_key | |
password: ${{ secrets.GCP_KEY }} | |
- name: Build and push to registry | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: | | |
${{ env.image_registry }}/formelio/nuts-node:${{ steps.version.outputs.git_version }} | |
cache-from: type=registry,ref=${{ inputs.image_registry }}/formelio/nuts-node:latest-cache | |
cache-to: type=registry,ref=${{ inputs.image_registry }}/formelio/nuts-node:latest-cache,mode=max | |
build-args: | | |
GIT_VERSION=${{ steps.version.outputs.git_version }} | |
GIT_COMMIT=${{ steps.version.outputs.git_commit }} | |
GIT_BRANCH=${{ steps.version.outputs.git_branch }} |