no message #55
Workflow file for this run
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: | |
tags: | |
- v* | |
permissions: | |
packages: write | |
env: | |
APP_NAME: rdtclient | |
DOCKER_FILE: ./Dockerfile | |
DOCKER_PLATFORMS: "linux/arm64/v8,linux/amd64" | |
ENABLE_DOCKERHUB: 1 | |
ENABLE_GHCR: 1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Docker Metadata action | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: | | |
${{ secrets.DOCKERHUB_USERNAME }}/${{ env.APP_NAME }} | |
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/${{ env.APP_NAME }} | |
tags: | | |
type=schedule | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
type=sha | |
# List of custom labels | |
# labels: # optional | |
- name: Docker Setup QEMU | |
uses: docker/[email protected] | |
- name: Docker Setup Buildx | |
uses: docker/[email protected] | |
with: | |
buildkitd-flags: --debug | |
- name: Docker Login | |
if: ${{ github.event_name != 'pull_request' && env.ENABLE_DOCKERHUB == 1 }} | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GHCR | |
if: ${{ github.event_name != 'pull_request' && env.ENABLE_GHCR == 1 }} | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker images | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ${{ env.DOCKER_FILE }} | |
platforms: ${{ env.DOCKER_PLATFORMS }} | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Docker Hub Registry Description | |
if: ${{ env.ENABLE_DOCKERHUB == 1 }} | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: ${{ secrets.DOCKERHUB_USERNAME }}/${{ env.APP_NAME }} | |
short-description: | | |
a web interface to manage your torrents on Real-Debrid, AllDebrid or Premiumize. | |
readme-filepath: ./README-DOCKER.md | |
# - name: Github Registry Description | |
# if: ${{ env.ENABLE_GHCR == 1 }} | |
# uses: peter-evans/[email protected] | |
# with: | |
# username: ${{ github.repository_owner }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# short-description: | | |
# A web interface to manage your torrents on Real-Debrid, AllDebrid or Premiumize. | |
# readme-filepath: ./README-DOCKER.md |