Abheek Dhawan
3 years ago
1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||
|
name: publish-dockerhub-image |
||||
|
|
||||
|
on: |
||||
|
push: |
||||
|
tags: |
||||
|
- "*" |
||||
|
|
||||
|
jobs: |
||||
|
build-container: |
||||
|
runs-on: ubuntu-latest |
||||
|
steps: |
||||
|
- name: Checkout code |
||||
|
uses: actions/checkout@v2 |
||||
|
|
||||
|
- name: Login to DockerHub |
||||
|
uses: docker/login-action@v1 |
||||
|
with: |
||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }} |
||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }} |
||||
|
|
||||
|
- name: Extract metadata (tags, labels) for Docker |
||||
|
id: meta |
||||
|
uses: docker/metadata-action@v3 |
||||
|
with: |
||||
|
images: adawesomeguy/awesomescibo |
||||
|
|
||||
|
- name: Build and push |
||||
|
uses: docker/build-push-action@v2 |
||||
|
with: |
||||
|
context: . |
||||
|
file: ./Dockerfile |
||||
|
push: true |
||||
|
tags: ${{ steps.meta.outputs.tags }} |
||||
|
labels: ${{ steps.meta.outputs.labels }} |
Loading…
Reference in new issue