Skip to content

check if input data format for NJ and NN is correct #3

check if input data format for NJ and NN is correct

check if input data format for NJ and NN is correct #3

Workflow file for this run

name: Build and push tagged
on:
push:
# Publish `1.2.3` tags as releases.
tags:
- '[0-9]*'
env:
IMAGE_NAME: dhuniwien/stemweb_py37
jobs:
# Push bootstrap image to GitHub Packages.
push:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log into DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push tagged image
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ env.IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }},${{ env.IMAGE_NAME }}:latest