Merge pull request #147 from Drazzilb08/jduparr-notification-update #240
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: Docker Develop Release | |
on: | |
push: | |
branches: [ dev ] | |
paths-ignore: | |
- '**/README.md' | |
- '**/.github/**' | |
pull_request: | |
types: | |
- closed | |
branches: | |
- dev | |
paths-ignore: | |
- '**/README.md' | |
- '**/.github/**' | |
jobs: | |
docker-dev: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GH_USERNAME }} | |
password: ${{ secrets.GH_TOKEN }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
"BRANCH=dev" | |
push: true | |
tags: | | |
${{ secrets.DOCKER_USERNAME }}/daps:dev | |
ghcr.io/drazzilb08/daps:dev |