We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 342e919 commit 9c849ecCopy full SHA for 9c849ec
.github/workflows/publish_assets.yml
@@ -14,7 +14,13 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
18
+ with:
19
+ # We need to download all tags so that the axion-release-plugin can resolve the most recent version tag.
20
+ # This is useful only for the manual trigger.
21
+ # For the release trigger, the tag is available on the current commit.
22
+ fetch-depth: 0
23
+
24
# Get the version from the commit. This will depend on the trigger of the workflow
25
# If the trigger is release, the version will be the tag on the commit.
26
# If the trigger is a workflow_dispatch, the version will be the branch name, which is
0 commit comments