Skip to content

Bump jinja2 from 3.1.4 to 3.1.5 in the pip group (#117) #103

Bump jinja2 from 3.1.4 to 3.1.5 in the pip group (#117)

Bump jinja2 from 3.1.4 to 3.1.5 in the pip group (#117) #103

Workflow file for this run

name: Build pelican container
on:
workflow_call:
workflow_dispatch:
push:
branches:
- master
paths:
- Containerfile
- static/**
- source/**
- templates/**
- entrypoint.py
- gulpfile.babel.js
- package.json
- requirements.txt
- yarn.lock
tags:
- v*
env:
image: ghcr.io/${{ github.repository }}
cache: ghcr.io/${{ github.repository }}-cache
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Gather metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.image }}
tags: |
type=semver,pattern={{version}}
type=ref,event=branch,enable={{is_default_branch}}
flavor: |
latest=auto
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: Containerfile
platforms: linux/amd64,linux/arm64/v8
provenance: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
# The end.