2022-05-13 14:47:27 +00:00
name : Publish Docker image
on :
release :
types : [ published, edited]
2022-06-20 18:04:17 +00:00
workflow_dispatch :
inputs :
stack-orchestrator-ref :
description : "The branch, commit or sha from stack-orchestrator to checkout"
required : false
default : "7fb664270a0ba09e2caa3095e8c91f3fdb5b38af"
ipld-eth-beacon-db-ref :
description : "The branch, commit or sha from ipld-eth-beacon-db to checkout"
required : false
default : "3dfe416302d553f8240f6051c08a7899b0e39e12"
ssz-data-ref :
description : "The branch, commit or sha from ssz-data to checkout"
required : false
default : "main"
pull_request :
paths :
- "!**.md"
- "!.gitignore"
- "!LICENSE"
- "!.github/workflows/**"
- ".github/workflows/on-pr.yml"
- ".github/workflows/tests.yml"
- "**"
schedule :
- cron : '0 13 * * *' # Must be single quotes!!
2022-05-13 14:47:27 +00:00
jobs :
2022-06-20 18:04:17 +00:00
pre_job :
# continue-on-error: true # Uncomment once integration is finished
runs-on : ubuntu-latest
# Map a step output to a job output
outputs :
should_skip : ${{ steps.skip_check.outputs.should_skip }}
steps :
- id : skip_check
uses : fkirc/skip-duplicate-actions@v4
with :
# All of these options are optional, so you can remove them if you are happy with the defaults
concurrent_skipping : "never"
skip_after_successful_duplicate : "true"
do_not_skip : '["workflow_dispatch", "schedule"]'
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-20 18:04:17 +00:00
if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
needs : pre_job
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 :
2022-06-20 18:04:17 +00:00
if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
needs : pre_job
2022-06-09 21:32:46 +00:00
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-06-20 18:04:17 +00:00
if : |
always() &&
(needs.trigger-tests.result == 'success' || needs.trigger-tests.result == 'skipped') &&
(needs.system-testing.result == 'success' || needs.system-testing.result == 'skipped') &&
github.event_name == 'release'
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
2022-06-20 18:04:17 +00:00
if : |
always() &&
(needs.build.result == 'success') &&
github.event_name == 'release'
2022-05-13 14:47:27 +00:00
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}}