Skip to content

Build and push image to Dockerhub on release #19

Build and push image to Dockerhub on release

Build and push image to Dockerhub on release #19

Workflow file for this run

name: Build and push image to Dockerhub on release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Set release version
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
tags: betrybe/cypress-evaluator-action:${{ env.RELEASE_VERSION }}