Projects STRLCPY LIEF Commits f58605f9
🤬
  • ■ ■ ■ ■ ■ ■
    .github/deploy.py
    skipped 126 lines
    127 127  CI_PRETTY_NAME = pretty_ci_name(CURRENT_CI)
    128 128  logger.info("CI: %s", CI_PRETTY_NAME)
    129 129   
    130  -ALLOWED_BRANCHES = {"master", "deploy", "devel", "enhancement/pe-authenticode"}
     130 +ALLOWED_BRANCHES = {"master", "deploy", "devel"}
    131 131  BRANCH_NAME = get_branch(CURRENT_CI)
    132 132  TAG_NAME = get_tag(CURRENT_CI)
    133 133  IS_TAGGED = len(TAG_NAME) > 0
    134 134  logger.info("Branch: %s", BRANCH_NAME)
    135 135  logger.info("Tag: %s", TAG_NAME)
    136  -if BRANCH_NAME not in ALLOWED_BRANCHES:
     136 +if BRANCH_NAME not in ALLOWED_BRANCHES and not IS_TAGGED:
    137 137   logger.info("Skip deployment for branch '%s'", BRANCH_NAME)
    138 138   sys.exit(0)
    139 139   
    skipped 272 lines
Please wait...
Page is in error, reload to recover