Skip to content

add docker image release #26

add docker image release

add docker image release #26

Workflow file for this run

name: Pull Request
on:
pull_request:
tags: ["*"]
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: jdx/mise-action@v2
- name: Install libvips
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update -qq -o Acquire::Retries=3
sudo apt-get install --fix-missing -qq -o Acquire::Retries=3 libvips-dev
- run: mise run setup
- run: mise run "check:*"
- run: mise run "test:*"