sync
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m53s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m53s
This commit is contained in:
36
.github/workflows/container-build.yml
vendored
36
.github/workflows/container-build.yml
vendored
@@ -1,19 +1,10 @@
|
|||||||
name: Build and Push Qbitcheck Docker Image
|
name: Build and Push Docker Image
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
|
||||||
- 'Dockerfile'
|
|
||||||
- 'requirements.txt'
|
|
||||||
- 'main.py'
|
|
||||||
- 'api/**'
|
|
||||||
- 'config/**'
|
|
||||||
- 'monitoring/**'
|
|
||||||
- 'persistence/**'
|
|
||||||
- 'utils/**'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push:
|
build-and-push:
|
||||||
@@ -26,15 +17,24 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set registry URL
|
||||||
|
id: registry
|
||||||
|
run: |
|
||||||
|
if [ "${{ github.server_url }}" = "https://github.com" ]; then
|
||||||
|
echo "url=ghcr.io" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "url=${{ github.server_url }}" | sed 's|https://||' >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
- name: Log in to Gitea Container Registry
|
- name: Log in to Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: gitea.service.dc1.fbleagh.duckdns.org
|
registry: ${{ steps.registry.outputs.url }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITEA_TOKEN || secrets.PACKAGE_TOKEN || secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.PACKAGE_TOKEN || secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
@@ -46,13 +46,7 @@ jobs:
|
|||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
tags: |
|
tags: |
|
||||||
gitea.service.dc1.fbleagh.duckdns.org/sstent/qbitcheck:latest
|
${{ steps.registry.outputs.url }}/${{ github.repository }}:latest
|
||||||
gitea.service.dc1.fbleagh.duckdns.org/sstent/qbitcheck:${{ github.sha }}
|
${{ steps.registry.outputs.url }}/${{ github.repository }}:${{ github.sha }}
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
|
|
||||||
# OCI annotations for repository linking
|
|
||||||
labels: |
|
|
||||||
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
|
|
||||||
org.opencontainers.image.title=Qbitcheck Connection Monitor
|
|
||||||
org.opencontainers.image.description=Python application for monitoring qBittorrent connections and managing remediation
|
|
||||||
|
|||||||
Reference in New Issue
Block a user