Skip to content

Update README to reflect codebase changes #16

Update README to reflect codebase changes

Update README to reflect codebase changes #16

name: Build Owlbot DEV Docker image
on:
push:
branches: [ "dockerize", "dev" ]
jobs:
build:
runs-on: ubuntu-latest
environment: dev
steps:
-
name: Checkout repository
uses: actions/checkout@v4
with:
path: 'discord-owlbot'
-
name: Build the Docker image
working-directory: discord-owlbot
run: docker build . --file Dockerfile --tag cntoarma/owlbot:dev
-
name: Authenticate to CNTO DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Publish image to DockerHub
run: docker image push cntoarma/owlbot:dev