Skip to content

Bump yt-dlp[default] from 2024.12.03 to 2024.12.13 in /backend #98

Bump yt-dlp[default] from 2024.12.03 to 2024.12.13 in /backend

Bump yt-dlp[default] from 2024.12.03 to 2024.12.13 in /backend #98

Workflow file for this run

name: Docker Build
on:
push:
branches: [ "main" ]
# Ignore changes to assets, .devcontainer, .github, or .vscode files
paths-ignore:
- '**/assets/**'
- '**/.vscode/**'
- '**/.github/**'
- '**/.devcontainer/**'
- '**/*.md'
- '**/docs/**'
- '**/frontend/**'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/assets/**'
- '**/.vscode/**'
- '**/.github/**'
- '**/.devcontainer/**'
- '**/*.md'
- '**/docs/**'
- '**/frontend/**'
jobs:
build:
name: Docker Build
runs-on: ubuntu-latest
env:
VER: ${{ github.sha }}-test
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Build the Docker image
- name: Build the Docker image
run: docker build . --file Dockerfile --tag trailarr:${{env.VER}} --build-arg APP_VERSION=${{ env.VER }}