Skip to content

Commit

Permalink
Fixes committing and download-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Dec 17, 2023
1 parent 23e6c18 commit 12ba54f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/actions/release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,15 @@ runs:
using: "composite"
steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
if-no-files-found: warn

- name: Download release notes
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-notes
if-no-files-found: warn

- name: Create a GitHub release
uses: softprops/action-gh-release@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [master]

jobs:
version-hint:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
;;
dev)
echo "Temporary dev release for testing"
bump-my-version bump --allow-dirty --verbose "$RELEASE_KIND"
bump-my-version bump --allow-dirty --verbose --no-commit "$RELEASE_KIND"
echo "TAG_NAME=$(bump-my-version show current_version)" >> $GITHUB_ENV
echo "PACKAGE=true" >> $GITHUB_ENV
# echo "Intentionally not bumping version for dev release"
Expand Down

0 comments on commit 12ba54f

Please sign in to comment.