rename repo #5
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 Image CI | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker Login | |
uses: docker/[email protected] | |
with: | |
username: kfstorm | |
password: ${{ secrets.DOCKER_HUB_PAT }} | |
- name: Docker Setup Buildx | |
uses: docker/[email protected] | |
- name: Build and push Docker images | |
uses: docker/[email protected] | |
with: | |
# List of target platforms for build | |
platforms: linux/amd64,linux/arm64/v8 | |
# Push is a shorthand for --output=type=registry | |
push: true | |
# List of tags | |
tags: kfstorm/doudarr |