Merge pull request #1147 from givepraise/add/disable-bot-notifications #211
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: Setup/Development - Create and publish Docker image | |
on: | |
push: | |
branches: ['main'] | |
env: | |
IMAGE_NAME: praise-dev/setup | |
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/setup/Dockerfile | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} |