Skip to content

Commit 4ed91e0

Browse files
committed
Allow alphanumeric tags and fix release script
1 parent 5c7c638 commit 4ed91e0

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
- '*'
55
tags:
66
- '[0-9]+.[0-9]+'
7+
- '[0-9]+.[0-9]+*'
78
paths:
89
- '.github/workflows/**'
910
- 'FiraCode.glyphs'

script/release.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
#! /usr/bin/env python3
2-
import argparse, base64, common, glob, json, os, platform, re, subprocess, sys, urllib.request, urllib.error, zipfile
2+
import argparse
3+
import base64
4+
import glob
5+
import json
6+
import os
7+
import platform
8+
import re
9+
import subprocess
10+
import sys
11+
import urllib.error
12+
import urllib.request
13+
import zipfile
14+
15+
import common
16+
317

418
def log_errors(name):
519
def wrap(f):

0 commit comments

Comments
 (0)