Skip to content

FIX: wait for media fails if folder doesn't already exist #43

FIX: wait for media fails if folder doesn't already exist

FIX: wait for media fails if folder doesn't already exist #43

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'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/assets/**'
- '**/.vscode/**'
- '**/.github/**'
- '**/.devcontainer/**'
- '**/*.md'
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 }}