chore(deps): update weblate/base docker tag to v2024.52.0 #9412
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 Image CI | |
on: | |
push: | |
branches-ignore: | |
- renovate/** | |
tags: | |
- '*' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
ci: | |
uses: ./.github/workflows/container-ci.yml | |
secrets: inherit | |
permissions: | |
security-events: write | |
packages: write | |
with: | |
variant: stable | |
release_github: | |
runs-on: ubuntu-24.04 | |
name: Create release on GitHub | |
permissions: | |
contents: write | |
needs: | |
- ci | |
if: ${{ startsWith(github.ref, 'refs/tags/') && github.repository == 'WeblateOrg/docker' }} | |
steps: | |
- uses: ncipollo/release-action@v1 | |
with: | |
generateReleaseNotes: true |