Compare commits
No commits in common. "f546076259cb0bfb3c4acd56b8f57a5f992f74d5" and "6eb48bd1805f961865a8f4e03c72d1283acca812" have entirely different histories.
f546076259
...
6eb48bd180
3 changed files with 7 additions and 29 deletions
25
.github/workflows/release.yaml
vendored
25
.github/workflows/release.yaml
vendored
|
|
@ -1,9 +1,5 @@
|
||||||
name: Publish release packages
|
name: Publish python package to pypi and testpypi
|
||||||
on:
|
on: push
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- v*
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build distribution
|
name: Build distribution
|
||||||
|
|
@ -30,7 +26,6 @@ jobs:
|
||||||
publish-to-testpypi:
|
publish-to-testpypi:
|
||||||
name: Test publishing to testpypi
|
name: Test publishing to testpypi
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
needs:
|
needs:
|
||||||
- build
|
- build
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -73,23 +68,13 @@ jobs:
|
||||||
name: Create github release
|
name: Create github release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
needs:
|
|
||||||
- build
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Grab dist files
|
- uses: taiki-e/create-gh-release-action@v1
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: python-package-distributions
|
|
||||||
path: dist/
|
|
||||||
- name: Generate release
|
|
||||||
uses: taiki-e/create-gh-release-action@v1
|
|
||||||
with:
|
with:
|
||||||
changelog: CHANGELOG.md
|
changelog: CHANGELOG.md
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Attach files to release
|
draft: true
|
||||||
uses: softprops/action-gh-release@v2
|
branch: main
|
||||||
with:
|
|
||||||
files: dist/*
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.2.0] - 2025-04-09
|
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Place notes into `notes` subdirectory of taskwarrior data directory by default
|
- Place notes into `notes` subdirectory of taskwarrior data directory by default
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,13 @@
|
||||||
[project]
|
[project]
|
||||||
name = "topen"
|
name = "topen"
|
||||||
version = "0.2.0"
|
version = "0.1.0"
|
||||||
description = "simple taskwarrior note management"
|
description = "Quickly edit notes for your taskwarrior tasks"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.13"
|
requires-python = ">=3.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"tasklib>=2.5.1",
|
"tasklib>=2.5.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
|
||||||
Documentation = "https://marty-oehme.github.io/topen"
|
|
||||||
Repository = "https://github.com/marty-oehme/topen"
|
|
||||||
Changelog = "https://github.com/marty-oehme/topen/blob/main/CHANGELOG.md"
|
|
||||||
|
|
||||||
[tool.uv]
|
[tool.uv]
|
||||||
package = true
|
package = true
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue