Skip to content

Commit

Permalink
Docker (#51)
Browse files Browse the repository at this point in the history
* testing docker build

* fixed spacing issue

* updated username

* updated name for testing

* finished image pusher
  • Loading branch information
charlie-ava authored Nov 11, 2021
1 parent 94de438 commit 704ffa3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/create-and-push-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create and Push Image

on:
push:
tags:
- '*'

jobs:
CreateAndPush:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASS }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: avaplatform/avalanche-rosetta:latest

0 comments on commit 704ffa3

Please sign in to comment.