mirror of
https://github.com/blockchain-etl/ethereum-etl.git
synced 2026-01-10 14:27:54 -05:00
20 lines
484 B
YAML
20 lines
484 B
YAML
name: Publish DockerHub
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Publish to DockerHub
|
|
if: startsWith(github.event.ref, 'refs/tags/v')
|
|
uses: elgohr/Publish-Docker-Github-Action@master
|
|
with:
|
|
name: blockchainetl/ethereum-etl
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
tag_semver: true |