We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319515a commit 37a0af6Copy full SHA for 37a0af6
.github/workflows/main.yml
@@ -1,4 +1,4 @@
1
-name: Create Archive
+name: Create Release
2
on:
3
push:
4
tags:
changelog.md
@@ -1,3 +1,3 @@
### Changelog
-* Add RepositoryName and RepositoryOwner variables to `setup.py`.
-* Github release bugfix
+* Add Workflow template.
+* Fix a critical bug.
setup.py
@@ -44,7 +44,8 @@ def makeTree(source = '.'):
44
if f.endswith('main.yml'):
45
with open(f + '.release', 'r') as tfile:
46
fData = tfile.read()
47
- os.remove(f + '.release')
+ if not dryRun:
48
+ os.remove(f + '.release')
49
hasModified = True
50
51
# Replace module name
0 commit comments