Skip to content

Bump debian from trixie-20251020 to trixie-20251103 #24

Bump debian from trixie-20251020 to trixie-20251103

Bump debian from trixie-20251020 to trixie-20251103 #24

Workflow file for this run

name: "Auto Release"
on:
pull_request:
types:
- closed
jobs:
auto-release:
if: github.event.pull_request.merged == true && github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'docker')
name: "Auto Release"
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Get Version
id: get-version
run: |
echo "version=stable-$(grep FROM ./Dockerfile | tail -n1 | cut -d':' -f2 | cut -d'-' -f2 | xargs)" >> $GITHUB_OUTPUT
- uses: actions/create-github-app-token@v2
id: generate-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Create Release
run: gh release create ${{ steps.get-version.outputs.version }} --generate-notes
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}