Skip to content

Configure Renovate

Configure Renovate #37

Workflow file for this run

name: Deployments
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
packages: write
concurrency:
group: deploy
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: buildx
uses: docker/setup-buildx-action@v2
- name: login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build
if: github.event_name == 'push'
uses: ./.github/actions/push
with:
label: latest
- name: build
if: github.event_name == 'pull_request'
uses: ./.github/actions/push
with:
label: pr-${{ github.event.pull_request.number }}