Skip to content

Bump aiohttp from 3.11.10 to 3.11.11 in /backend #105

Bump aiohttp from 3.11.10 to 3.11.11 in /backend

Bump aiohttp from 3.11.10 to 3.11.11 in /backend #105

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