mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 05:26:09 +05:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
name: ci
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: tag number
|
|
run : echo ${{ github.event.release.tag_name }}
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3.3.0
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2.1.0
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2.2.1
|
|
-
|
|
name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2.1.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: set lower case owner name
|
|
run: |
|
|
echo "REG_REPO=${REPO,,}" >>${GITHUB_ENV}
|
|
env:
|
|
REPO: '${{ github.repository }}'
|
|
-
|
|
name: CHECK ENVS
|
|
run: |
|
|
echo ${{ env.REG_REPO }}
|
|
-
|
|
name: Build and push
|
|
uses: docker/build-push-action@v3.3.0
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
push: true
|
|
tags: |
|
|
ghcr.io/${{ env.REG_REPO }}:${{ github.event.release.tag_name }}
|
|
ghcr.io/${{ env.REG_REPO }}:latest |