Skip to content

Commit

Permalink
rename project to eth-watcher-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ramilexe committed Dec 28, 2020
1 parent 981e307 commit f9ffb91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- name: Run docker build
run: make docker-build
- name: Tag docker image
run: docker tag vulcanize/contract-watcher-js docker.pkg.github.com/vulcanize/contract-watcher-js/contract-watcher-js:${{steps.vars.outputs.sha}}
run: docker tag vulcanize/eth-watcher-ts docker.pkg.github.com/vulcanize/eth-watcher-ts/contract-watcher-js:${{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/contract-watcher-js/contract-watcher-js:${{steps.vars.outputs.sha}}
run: docker push docker.pkg.github.com/vulcanize/eth-watcher-ts/contract-watcher-js:${{steps.vars.outputs.sha}}

6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
- 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
run: docker pull docker.pkg.github.com/vulcanize/contract-watcher-js/contract-watcher-js:${{steps.vars.outputs.sha}}
run: docker pull docker.pkg.github.com/vulcanize/eth-watcher-ts/contract-watcher-js:${{steps.vars.outputs.sha}}
- name: Docker Login to Docker Registry
run: echo ${{ secrets.VULCANIZEJENKINS_PAT }} | docker login -u vulcanizejenkins --password-stdin
- name: Tag docker image
run: docker tag docker.pkg.github.com/vulcanize/contract-watcher-js/contract-watcher-js:${{steps.vars.outputs.sha}} vulcanize/contract-watcher-js:${{steps.vars.outputs.tag}}
run: docker tag docker.pkg.github.com/vulcanize/eth-watcher-ts/contract-watcher-js:${{steps.vars.outputs.sha}} vulcanize/eth-watcher-ts:${{steps.vars.outputs.tag}}
- name: Docker Push to Docker Hub
run: docker push vulcanize/contract-watcher-js:${{steps.vars.outputs.tag}}
run: docker push vulcanize/eth-watcher-ts:${{steps.vars.outputs.tag}}

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Build docker image
.PHONY: docker-build
docker-build:
docker build -t vulcanize/contract-watcher-js -f Dockerfile .
docker build -t vulcanize/eth-watcher-ts -f Dockerfile .

0 comments on commit f9ffb91

Please sign in to comment.