Compare commits

4 Commits

Author SHA1 Message Date
1808debb93 chore(deps): update https://github.com/jrubics/poetry-publish action to v2.1
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Python Linters / formatting (pull_request) Successful in 32s
Python Linters / pylint (pull_request) Successful in 38s
REUSE Compliance / reuse (pull_request) Successful in 7s
Python Linters / mypy (pull_request) Successful in 33s
Selftests / test-sync (pull_request) Successful in 1m1s
Selftests / test-build-install (pull_request) Successful in 1m20s
2025-03-24 21:16:42 +00:00
80eb37d8ed renovate: add automerge
All checks were successful
REUSE Compliance / reuse (push) Successful in 15s
Python Linters / formatting (push) Successful in 36s
Python Linters / pylint (push) Successful in 38s
Python Linters / mypy (push) Successful in 38s
Selftests / test-build-install (push) Successful in 1m8s
Selftests / test-sync (push) Successful in 53s
2025-03-24 22:10:53 +01:00
bea16d9b67 Bump version: 0.2.1 → 0.2.2
All checks were successful
Python package / build (push) Successful in 1m14s
Python Linters / pylint (push) Successful in 43s
Python Linters / formatting (push) Successful in 37s
Python Linters / mypy (push) Successful in 41s
Selftests / test-build-install (push) Successful in 40s
Selftests / test-sync (push) Successful in 1m2s
REUSE Compliance / reuse (push) Successful in 19s
2025-01-12 21:25:37 +01:00
f9e46060cf Revert "update release workflow to be based on releases"
Some checks failed
Python Linters / formatting (push) Waiting to run
Python Linters / mypy (push) Waiting to run
REUSE Compliance / reuse (push) Waiting to run
Selftests / test-build-install (push) Waiting to run
Selftests / test-sync (push) Waiting to run
Python Linters / pylint (push) Has been cancelled
This reverts commit be86ebad40.

This isn't possible with act
2025-01-12 21:24:57 +01:00
3 changed files with 20 additions and 7 deletions

View File

@@ -1,18 +1,18 @@
# SPDX-FileCopyrightText: 2024 Max Mehl <https://mehl.mx>
# SPDX-FileCopyrightText: 2023 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: Apache-2.0
name: Publish release on PyPI
name: Python package
on:
release:
types: [published]
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and publish to PyPI
uses: https://github.com/JRubics/poetry-publish@v2.0
uses: https://github.com/JRubics/poetry-publish@v2.1
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}

View File

@@ -4,7 +4,7 @@
[tool.poetry]
name = "seafile-mirror"
version = "0.2.1"
version = "0.2.2"
description = "Handle clean read-only (re-)syncs of Seafile libraries to mirror them"
authors = ["Max Mehl <mail@mehl.mx>"]
license = "Apache-2.0"

View File

@@ -1,4 +1,17 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["local>renovate-bot/renovate-config"],
"packageRules": [
// Merge all dev dependencies, even major versions
{
"matchDepTypes": ["dev"],
"automerge": true
},
// Merge all other patch and minor dependencies
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
]
}