Skip to content

Add Gitpod config file #18

Add Gitpod config file

Add Gitpod config file #18

Workflow file for this run

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@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASS }}
- name: Build and push Docker images
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
c4tplatform/camino-messenger-bot:latest
c4tplatform/camino-messenger-bot:${{ github.sha }}