Skip to content

chore(deps): Bump @commitlint/prompt from 18.6.1 to 19.0.3 (#2004) #572

chore(deps): Bump @commitlint/prompt from 18.6.1 to 19.0.3 (#2004)

chore(deps): Bump @commitlint/prompt from 18.6.1 to 19.0.3 (#2004) #572

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
- rel*
tags:
- latest
- v*
jobs:
ghcr:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure
run: |
echo "REF=${GITHUB_REF##refs/*/}" >> $GITHUB_ENV
./bootstrap.sh
./configure --disable-dependency-checks --enable-developer
- name: Publish Docker Image to GH Container Registry
run: |
make docker-build-push
env:
DOCKER_REGISTRY: ghcr.io
DOCKER_REPO: ${{ github.repository }}
DOCKER_TAG: ${{ env.REF }}
DOCKER_USERNAME: ${{ github.actor }}
DOCKER_PAT: ${{ secrets.CR_SILE_TYPESETTER }}