Skip to content

fix: image encoding issue when the format is not specified (#4435) #19

fix: image encoding issue when the format is not specified (#4435)

fix: image encoding issue when the format is not specified (#4435) #19

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: python -m pip install --upgrade build
- name: Build
run: python -m build
- name: Archive
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/*
release:
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1