Files
docker/.github/workflows/libtorrent2.yml
2025-02-01 15:08:49 +08:00

51 lines
1.4 KiB
YAML

name: libtorrent2
on:
push:
paths:
- 'qBittorrent/Dockerfile.libtorrent2'
workflow_dispatch:
jobs:
job1:
name: buildx tag
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 'Set env'
run: |
echo "LIBTORRENT_VER=$(echo `grep -n "LIBTORRENT_VER=" qBittorrent/Dockerfile.libtorrent2`|awk -F= '{print $2}')" >> $GITHUB_ENV
echo "ALPINE_VER=$(echo `grep -n "alpine" qBittorrent/Dockerfile.libtorrent2`|awk -F: '{print $3}')" >> $GITHUB_ENV
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./qBittorrent
file: ./qBittorrent/Dockerfile.libtorrent2
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
ghcr.io/gshang2017/libtorrent:2
ghcr.io/gshang2017/libtorrent:${{ env.LIBTORRENT_VER }}-alpine-${{ env.ALPINE_VER }}