Converting strings to HTML outputs to allow use of Anchor
component.
#1025
Workflow file for this run
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 Build Latest Commit | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build container image and push to DockerHub | |
id: docker_build | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
tags: 'bertrama/search-unstable:${{ github.sha }},bertrama/search-unstable:latest' | |
file: Dockerfile | |
- name: Image digest | |
run: | | |
echo '${{ steps.docker_build.outputs.digest }}' | |