2021-09-30 12:39:48 +00:00
name : Publish Docker image
on :
release :
2022-05-13 12:03:26 +00:00
types : [ published, edited]
2021-09-30 12:39:48 +00:00
jobs :
2022-05-12 15:18:08 +00:00
build :
name : Run docker build
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v2
- name : Get the version
id : vars
2023-03-21 17:49:12 +00:00
run : |
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
2022-05-12 15:18:08 +00:00
- name : Run docker build
run : make docker-build
- name : Tag docker image
2023-03-13 13:35:58 +00:00
run : docker tag cerc/ipld-eth-db git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}}
- name : Tag docker image
run : docker tag git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}} git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.tag}}
2022-05-12 15:18:08 +00:00
- name : Docker Login
2023-03-21 17:49:12 +00:00
run : echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin
2022-05-12 15:18:08 +00:00
- name : Docker Push
2023-03-21 17:49:12 +00:00
run : docker push git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}}
- name : Docker Push with TAG to git.vdb.to
run : docker push git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.tag}}