2022-05-13 14:47:27 +00:00
name : Publish Docker image
on :
release :
types : [ published, edited]
jobs :
2022-06-03 16:47:13 +00:00
trigger-tests :
2022-06-09 21:32:46 +00:00
uses : ./.github/workflows/generic-testing.yml
2022-06-03 16:47:13 +00:00
with :
stack-orchestrator-ref : ${{ github.event.inputs.stack-orchestrator-ref }}
2022-06-09 21:32:46 +00:00
ipld-eth-beacon-db-ref : ${{ github.event.inputs.ipld-eth-beacon-db-ref }}
2022-06-03 16:47:13 +00:00
ssz-data-ref : ${{ github.event.inputs.ssz-data-ref }}
secrets :
GHA_KEY : ${{secrets.GHA_KEY}}
2022-06-09 21:32:46 +00:00
system-testing :
uses : ./.github/workflows/system-tests.yml
with :
stack-orchestrator-ref : ${{ github.event.inputs.stack-orchestrator-ref }}
ipld-eth-beacon-db-ref : ${{ github.event.inputs.ipld-eth-beacon-db-ref }}
secrets :
GHA_KEY : ${{secrets.GHA_KEY}}
BC_ADDRESS : ${{secrets.BC_ADDRESS}}
2022-05-13 14:47:27 +00:00
build :
name : Run docker build
runs-on : ubuntu-latest
2022-06-09 21:32:46 +00:00
needs :
- trigger-tests
- system-testing
2022-05-13 14:47:27 +00:00
steps :
- uses : actions/checkout@v2
- name : Get the version
id : vars
run : echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
- name : Run docker build
run : make docker-build
- name : Tag docker image
2022-06-09 21:32:46 +00:00
run : docker tag vulcanize/ipld-eth-beacon-indexer docker.pkg.github.com/vulcanize/ipld-eth-beacon-indexer/ipld-eth-beacon-indexer:${{steps.vars.outputs.sha}}
2022-05-13 14:47:27 +00:00
- name : Docker Login
run : echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
- name : Docker Push
2022-06-09 21:32:46 +00:00
run : docker push docker.pkg.github.com/vulcanize/ipld-eth-beacon-indexer/ipld-eth-beacon-indexer:${{steps.vars.outputs.sha}}
2022-05-13 14:47:27 +00:00
push_to_registries :
name : Push Docker image to Docker Hub
runs-on : ubuntu-latest
needs : build
steps :
- name : Get the version
id : vars
run : |
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
- name : Docker Login to Github Registry
run : echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
- name : Docker Pull
2022-06-09 21:32:46 +00:00
run : docker pull docker.pkg.github.com/vulcanize/ipld-eth-beacon-indexer/ipld-eth-beacon-indexer:${{steps.vars.outputs.sha}}
2022-05-13 14:47:27 +00:00
- name : Docker Login to Docker Registry
run : echo ${{ secrets.VULCANIZEJENKINS_PAT }} | docker login -u vulcanizejenkins --password-stdin
- name : Tag docker image
2022-06-09 21:32:46 +00:00
run : docker tag docker.pkg.github.com/vulcanize/ipld-eth-beacon-indexer/ipld-eth-beacon-indexer:${{steps.vars.outputs.sha}} vulcanize/ipld-eth-beacon-indexer:${{steps.vars.outputs.tag}}
2022-05-13 14:47:27 +00:00
- name : Docker Push to Docker Hub
2022-06-09 21:32:46 +00:00
run : docker push vulcanize/ipld-eth-beacon-indexer:${{steps.vars.outputs.tag}}