Compare commits
4 Commits
v0.2.1
...
1808debb93
| Author | SHA1 | Date | |
|---|---|---|---|
| 1808debb93 | |||
| 80eb37d8ed | |||
| bea16d9b67 | |||
| f9e46060cf |
@@ -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 }}
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user