Skip to content

don't build container for arm/v7 since 32-bit #29

don't build container for arm/v7 since 32-bit

don't build container for arm/v7 since 32-bit #29

on:

Check failure on line 1 in .github/workflows/docker-cleanup.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-cleanup.yml

Invalid workflow file

(Line: 29, Col: 20): Unexpected symbol: '|'. Located at position 16 within expression: inputs.dry-run | env.DEFAULT_DRY_RUN, (Line: 30, Col: 21): Unexpected symbol: '|'. Located at position 17 within expression: inputs.packages | env.DEFAULT_PACKAGES
schedule:
- cron: "17 23 * * *"
workflow_dispatch:
inputs:
dry-run:
default: false
type: bool
packages:
default: 'firestarr-cpp/cache,firestarr-cpp/firestarr'
type: string
jobs:
cleanup-docker:
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
env:
DEFAULT_PACKAGES: 'firestarr-cpp/cache,firestarr-cpp/firestarr'
DEFAULT_DRY_RUN: false
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dataaxiom/ghcr-cleanup-action@v1
with:
dry-run: ${{ inputs.dry-run | env.DEFAULT_DRY_RUN }}
packages: ${{ inputs.packages | env.DEFAULT_PACKAGES }}