Skip to content

handle hash over raw bytes, not encoded Bytes #76

handle hash over raw bytes, not encoded Bytes

handle hash over raw bytes, not encoded Bytes #76

Workflow file for this run

name: Build and publish to Docker Hub
on: push
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
id: extract_branch
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
push: true
tags: joystream/faucet:${{ steps.extract_branch.outputs.branch }}