Merge pull request #1137 from givepraise/fix/missing-user-details #328
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Discord-Bot/Development - Create and publish Docker image | |
on: | |
push: | |
branches: ['main'] | |
env: | |
IMAGE_NAME: praise-dev/discord-bot | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
name: Check out code | |
- uses: mr-smithers-excellent/docker-build-push@v5 | |
name: Build and push Docker image | |
with: | |
image: $IMAGE_NAME | |
tags: latest | |
addTimestamp: true | |
registry: ghcr.io | |
dockerfile: packages/discord-bot/Dockerfile | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} |