Skip to content

Commit 12ba54f

Browse files
committed
Fixes committing and download-artifact
1 parent 23e6c18 commit 12ba54f

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/actions/release/action.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,15 @@ runs:
1212
using: "composite"
1313
steps:
1414
- name: Download packages built by build-and-inspect-python-package
15-
uses: actions/download-artifact@v3
15+
uses: actions/download-artifact@v4
1616
with:
1717
name: Packages
1818
path: dist
19-
if-no-files-found: warn
2019

2120
- name: Download release notes
22-
uses: actions/download-artifact@v3
21+
uses: actions/download-artifact@v4
2322
with:
2423
name: release-notes
25-
if-no-files-found: warn
2624

2725
- name: Create a GitHub release
2826
uses: softprops/action-gh-release@v1

.github/workflows/version.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [master]
66

77
jobs:
8-
version-hint:
8+
version:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
;;
5050
dev)
5151
echo "Temporary dev release for testing"
52-
bump-my-version bump --allow-dirty --verbose "$RELEASE_KIND"
52+
bump-my-version bump --allow-dirty --verbose --no-commit "$RELEASE_KIND"
5353
echo "TAG_NAME=$(bump-my-version show current_version)" >> $GITHUB_ENV
5454
echo "PACKAGE=true" >> $GITHUB_ENV
5555
# echo "Intentionally not bumping version for dev release"

0 commit comments

Comments
 (0)