Skip to content

Fix/deno 2 test and build #3

Fix/deno 2 test and build

Fix/deno 2 test and build #3

name: Build & publish containers
on:
pull_request:
branches: [master]
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
push_docker_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: bids/validator
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: false
target: base
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=cacheonly