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
|
2021-12-23 14:21:06 +00:00
|
|
|
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
|
2021-12-23 14:21:06 +00:00
|
|
|
- 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: |
|
2021-12-23 14:21:06 +00:00
|
|
|
GIT_COMMIT=${{ steps.vars.outputs.sha }}
|
|
|
|
|