Update dependency com.puppycrawl.tools:checkstyle to v10.17.0 #499
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: Docker Image CI | |
on: | |
push: | |
jobs: | |
build: | |
if: github.repository == 'buschlab/fhirspark' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag ghcr.io/buschlab/fhirspark:latest --label maintainer="Niklas Reimer <${{ secrets.EMAIL }}>" | |
- name: Login to Docker registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload Docker image | |
run: docker push ghcr.io/buschlab/fhirspark:latest |