Skip to content

Commit

Permalink
adding github workflow to push docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-c4t committed Dec 13, 2023
1 parent f79f257 commit cc40964
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish Docker image

on:
push:
branches: [c4t]

jobs:
push_to_dockerhub:
name: Push Docker image to dockerhub
runs-on: ubuntu-latest

steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASS }}

- name: Build and push Docker images
uses: docker/build-push-action@5
with:
context: .
push: true
tags: |
c4tplatform/camino-messenger-bot:latest
c4tplatform/camino-messenger-bot:${GITHUB_SHA}

0 comments on commit cc40964

Please sign in to comment.