diff options
| author | Lex Neva <github.com@lexneva.name> | 2020-02-28 18:42:49 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-02-28 18:42:49 -0500 |
| commit | 86901a2ab5f94f73ee66fb19b832c9905b2182fc (patch) | |
| tree | 0c3a1084f5f2f77c87334278d50fb31f2eb86cf2 | |
| parent | 65c4350c021d056cca8df97603a5e24438712d78 (diff) | |
v1.27.2: third time's the charm?
The first two tries at releasing v1.27 didn't work. Here are the release
notes again:
* origin now defaults to the center of the design, not the canvas (#576)
* new extension: reset embroidery settings
* fix: visual commands were showing in print PDF (#557)
* fix: "LineString has no method geoms" error in auto satin (#524)
* fix: crashes when saving JEF, DST, and other formats in Inkscape 1.0
* fix: Print PDF not working on mac (showing a blank window)
* under the hood: new build system based on GitHub Actions
* fixes issues with builds not finishing or breaking randomly
| -rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d471140..b1541bae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -162,9 +162,10 @@ jobs: shell: bash run: | if [[ "${GITHUB_REF}" =~ ^refs/tags/v[0-9.]+$ ]]; then - echo "::set-env name=release_tag::${GITHUB_REF}" + tag="${GITHUB_REF#refs/tags/}" + echo "::set-env name=release_tag::${tag}" echo "::set-env name=prerelease::false" - echo "::set-env name=title::${GITHUB_REF}" + echo "::set-env name=title::${tag}" else branch="${GITHUB_REF#refs/heads/}" tag="dev-build-$(echo $branch | tr / -)" |
