Skip to content

Commit ce75176

Browse files
authored
fix(ci): Fix release should use python-semantic-release/publish-action (#183)
Unable to resolve action `python-semantic-release/upload-to-gh-release@9.21.0`, unable to find version `9.21.0` It is now named `python-semantic-release/publish-action`
1 parent a89ca4f commit ce75176

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.dockerignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.coverage
33

44
.env
5-
.tox/
65
*.db
76
*.sqlite
87

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
with:
22-
fetch-depth: 0
2322
ref: ${{ github.ref_name }}
23+
fetch-depth: 0
2424
persist-credentials: false
2525
- name: Setup | Force release branch to be at workflow sha
2626
run: |
@@ -40,7 +40,7 @@ jobs:
4040
if: steps.release.outputs.released == 'true'
4141

4242
- name: Publish | Upload to GitHub Release Assets
43-
uses: python-semantic-release/upload-to-gh-release@9.21.0
43+
uses: python-semantic-release/publish-action@9.21.0
4444
if: steps.release.outputs.released == 'true'
4545
with:
4646
github_token: ${{ secrets.BOT_GITHUB_TOKEN }}

django_object_actions/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
__version__ = "4.3.0"
44

55

6-
# kind of like __all__, make these available for public
76
from .utils import (
87
BaseDjangoObjectActions,
98
DjangoObjectActions,

0 commit comments

Comments
 (0)