eth-statediff-service/.github/workflows/publish.yaml

30 lines
873 B
YAML
Raw Normal View History

2020-11-09 18:15:14 +00:00
name: Publish Docker image
on:
release:
types: [published]
jobs:
push_to_registries:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
2021-12-21 11:41:27 +00:00
- uses: actions/checkout@v2
2020-11-09 18:15:14 +00:00
- name: Get the version
run: |
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
echo ::set-output name=sha::$(echo ${GITHUB_SHA})
2020-11-09 18:15:14 +00:00
id: vars
- name: Docker Login to Docker Registry
uses: docker/login-action@v1
with:
username: vulcanizejenkins
password: ${{ secrets.VULCANIZEJENKINS_PAT }}
2021-12-21 12:07:01 +00:00
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: vulcanize/eth-statediff-service:${{ steps.vars.outputs.tag }}
build-args: |
GIT_COMMIT=${{ steps.vars.outputs.sha }}