Skip to content

Commit

Permalink
Merge pull request #151 from vulcanize/feature/cicd-docker-tag
Browse files Browse the repository at this point in the history
Combine the build and push steps.
  • Loading branch information
abdulrabbani00 authored May 19, 2022
2 parents da30a95 + 025b1c7 commit be34f0e
Showing 2 changed files with 18 additions and 26 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/on-master.yaml

This file was deleted.

19 changes: 18 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -3,9 +3,27 @@ on:
release:
types: [published]
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-server docker.pkg.github.com/vulcanize/ipld-eth-server/ipld-eth-server:${{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-server/ipld-eth-server:${{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
@@ -22,4 +40,3 @@ jobs:
run: docker tag docker.pkg.github.com/vulcanize/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.sha}} vulcanize/ipld-eth-server:${{steps.vars.outputs.tag}}
- name: Docker Push to Docker Hub
run: docker push vulcanize/ipld-eth-server:${{steps.vars.outputs.tag}}

0 comments on commit be34f0e

Please sign in to comment.