File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@v4
16
16
with :
17
17
persist-credentials : false
18
-
18
+ fetch-depth : 0 # Fetch the full history
19
+ ref : ${{ github.ref }} # Check out the current branch or tag
20
+
21
+ - name : Fetch tags only
22
+ run : git fetch --tags --no-recurse-submodules
23
+
19
24
- name : Set up Python
20
25
uses : actions/setup-python@v4
21
26
with :
Original file line number Diff line number Diff line change 63
63
# Whitelist pattern for remotes (set to None to use local branches only)
64
64
smv_remote_whitelist = None
65
65
# Pattern for released versions
66
- smv_released_pattern = r"^tags/.*$"
66
+ smv_released_pattern = "" # r"^tags/.*$"
67
67
# Format for versioned output directories inside the build directory
68
68
smv_outputdir_format = "{ref.name}"
69
69
# Determines whether remote or local git branches/tags are preferred if their
You can’t perform that action at this time.
0 commit comments