Skip to content

Commit

Permalink
Merge changes for docker process to build and push a docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
prathamesh0 committed May 17, 2022
2 parents 00897ce + 3014e51 commit 0ad88f6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 27 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/on-main.yaml

This file was deleted.

21 changes: 19 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
name: Publish Docker image
on:
release:
types: [published]
types: [published, edited]
jobs:
build:
name: Run docker build
runs-on: ubuntu-latest
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
run: docker tag vulcanize/ipld-eth-db docker.pkg.github.com/vulcanize/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}}
- name: Docker Login
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
- name: Docker Push
run: docker push docker.pkg.github.com/vulcanize/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}}
push_to_registries:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
needs: build
steps:
- name: Get the version
id: vars
Expand All @@ -21,4 +38,4 @@ jobs:
- name: Tag docker image
run: docker tag docker.pkg.github.com/vulcanize/ipld-eth-db/ipld-eth-db:${{steps.vars.outputs.sha}} vulcanize/ipld-eth-db:${{steps.vars.outputs.tag}}
- name: Docker Push to Docker Hub
run: docker push vulcanize/ipld-eth-db:${{steps.vars.outputs.tag}}
run: docker push vulcanize/ipld-eth-db:${{steps.vars.outputs.tag}}

0 comments on commit 0ad88f6

Please sign in to comment.