Skip to content

try with other base image #14

try with other base image

try with other base image #14

Workflow file for this run

name: Build and push image
on:
push:
tags:
- '2[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: docker-tag
uses: yuya-takeyama/docker-tag-from-github-ref-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: cdiener/gapseq:latest, cdiener/gapseq:${{ steps.docker-tag.outputs.tag }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}