Skip to content

Commit 29c0440

Browse files
Merge pull request #72 from ASFHyP3/develop
Release v0.6.1
2 parents bfcb247 + 9c3af14 commit 29c0440

10 files changed

Lines changed: 28 additions & 46 deletions

.github/workflows/build-and-deploy.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ on:
1414
jobs:
1515
call-changelog-check-workflow:
1616
# Docs: https://github.com/ASFHyP3/actions
17-
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.20.0
17+
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.21.0

.github/workflows/distribute.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Build and Distribute to PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
call-pypi-workflow:
10+
uses: ASFHyP3/actions/.github/workflows/reusable-pypi.yml@v0.21.0
11+
permissions:
12+
contents: read
13+
secrets:
14+
PYPI_TOKEN: ${{ secrets.TOOLS_PYPI_PAK }}

.github/workflows/labeled-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ on:
1313
jobs:
1414
call-labeled-pr-check-workflow:
1515
# Docs: https://github.com/ASFHyP3/actions
16-
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.20.0
16+
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.21.0

.github/workflows/release-checklist-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
call-release-workflow:
1212
# Docs: https://github.com/ASFHyP3/actions
13-
uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.20.0
13+
uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.21.0
1414
permissions:
1515
pull-requests: write
1616
secrets:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
call-release-workflow:
1010
# Docs: https://github.com/ASFHyP3/actions
11-
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.20.0
11+
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.21.0
1212
with:
1313
release_prefix: SatChip
1414
release_branch: main

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ on: push
55
jobs:
66
call-secrets-analysis-workflow:
77
# Docs: https://github.com/ASFHyP3/actions
8-
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.20.0
8+
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.21.0
99

1010
call-ruff-workflow:
1111
# Docs: https://github.com/ASFHyP3/actions
12-
uses: ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.20.0
12+
uses: ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.21.0
1313

1414
call-mypy-workflow:
15-
uses: ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.20.0
15+
uses: ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.21.0
1616
permissions:
1717
contents: read

.github/workflows/tag-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ on:
88
jobs:
99
call-bump-version-workflow:
1010
# Docs: https://github.com/ASFHyP3/actions
11-
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.20.0
11+
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.21.0
1212
secrets:
1313
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
call-pytest-workflow:
1515
# Docs: https://github.com/ASFHyP3/actions
16-
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.20.0
16+
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.21.0
1717
with:
1818
local_package_name: satchip
1919
python_versions: >-

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
77
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [0.6.1]
10+
11+
### Added
12+
* New builds are now automatically published to PyPI on release.
13+
914
## [0.6.0]
1015

1116
### Added

0 commit comments

Comments
 (0)