Bump clap from 4.5.14 to 4.5.21 #301
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: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build -t wseresearch/qado-sparql-validator:latest . | |
- name: Docker Login | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Tag docker image version | |
if: startsWith(github.ref, 'refs/tags/') | |
run: docker tag wseresearch/qado-sparql-validator:latest "wseresearch/qado-sparql-validator:${{ github.ref_name }}" | |
- name: Push latest docker image | |
if: startsWith(github.ref, 'refs/tags/') | |
run: docker push wseresearch/qado-sparql-validator:latest | |
- name: Push docker image version | |
if: startsWith(github.ref, 'refs/tags/') | |
run: docker push "wseresearch/qado-sparql-validator:${{ github.ref_name }}" |