Back to drafts

This commit is contained in:
Mike A. Trethewey
2020-02-27 02:43:38 -08:00
parent f1ad50e14b
commit c5f08f7b27
3 changed files with 3 additions and 5 deletions

View File

@@ -212,7 +212,7 @@ jobs:
tag_name: v${{ steps.debug_info.outputs.github_tag }}
release_name: ALttPDoorRandomizer v${{ steps.debug_info.outputs.github_tag }}
body: ${{ steps.release_notes.outputs.body }}
prerelease: contains(steps.debug_info.outputs.github_tag,'p.') || contains(steps.debug_info.outputs.github_tag, 'pre.')
draft: true
# upload linux archive asset
- name: Upload Linux Archive Asset
id: upload-linux-asset

View File

@@ -39,8 +39,7 @@ a = Analysis(['DungeonRandomizer.py'],
excluded_binaries = [
'VCRUNTIME140.dll',
'msvcp140.dll',
'mfc140u.dll',
'ucrtbase.dll']
'mfc140u.dll']
a.binaries = TOC([x for x in a.binaries if x[0] not in excluded_binaries])
pyz = PYZ(a.pure, a.zipped_data,

View File

@@ -44,8 +44,7 @@ a = Analysis(['Gui.py'],
excluded_binaries = [
'VCRUNTIME140.dll',
'msvcp140.dll',
'mfc140u.dll',
'ucrtbase.dll']
'mfc140u.dll']
a.binaries = TOC([x for x in a.binaries if x[0] not in excluded_binaries])
pyz = PYZ(a.pure, a.zipped_data,