rutorrent: Update from version 4.1.5 to 4.3.6 #180
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 | |
on: | |
# Trigger on file change | |
push: | |
paths: | |
- 'Dockerfile' | |
branches: | |
- master | |
pull_request: | |
paths: | |
- 'Dockerfile' | |
# Trigger build manually | |
workflow_dispatch: | |
# Trigger build on a schedule | |
schedule: | |
# every fist day of the month | |
- cron: '0 0 1 * *' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'SynoCommunity' | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
if: ${{ github.event_name != 'pull_request' }} | |
with: | |
push: true | |
tags: ghcr.io/synocommunity/spksrc:latest |