Skip to content

6.5.0 it is.

6.5.0 it is. #24

Workflow file for this run

name: Push Docker image to Docker Hub
on:
push:
branches: [ main ]
jobs:
push_to_registry:
name: Build and push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
continue-on-error: true
context: .
push: true
tags: ${{ secrets.USERNAME }}/cider-bot:latest