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
|
|
|
|
id: vars
|
|
|
|
run: |
|
|
|
|
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
|
2021-12-21 11:41:27 +00:00
|
|
|
echo ::set-output name=branch::$(echo ${GITHUB_REF##*/})
|
|
|
|
- name: Docker Login
|
2020-11-09 18:15:14 +00:00
|
|
|
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
|
2021-12-21 11:41:27 +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: |
|
|
|
|
BRANCH=${{ steps.vars.outputs.branch }}
|