Skip to content

Commit a5ae90d

Browse files
authored
Merge pull request #112 from spotify/fix_release
Fix release
2 parents 1ac7815 + 8fcd132 commit a5ae90d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Build
1818
run: rake build[release]
1919
- name: Set tag name
20-
run: echo ::set-env name=TAG_NAME::$(echo $GITHUB_REF | cut -c 11-)
20+
run: echo "TAG_NAME=$(echo $GITHUB_REF | cut -c 11-)" >> $GITHUB_ENV
2121
- name: Zip release
2222
run: "mkdir releases && zip -j releases/XCLogParser-macOS-x86_64-$TAG_NAME.zip .build/release/xclogparser"
2323
- name: Upload binaries to release
@@ -42,7 +42,7 @@ jobs:
4242
- name: Build
4343
run: LANG=en_US.UTF-8 LC_CTYPE=UTF-8 rake build[release]
4444
- name: Set tag name
45-
run: echo ::set-env name=TAG_NAME::$(echo $GITHUB_REF | cut -c 11-)
45+
run: echo "TAG_NAME=$(echo $GITHUB_REF | cut -c 11-)" >> $GITHUB_ENV
4646
- name: Zip release
4747
uses: montudor/action-zip@v0.1.0
4848
with:

Sources/XCLogParser/commands/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ import Foundation
2121

2222
public struct Version {
2323

24-
public static let current = "0.2.20"
24+
public static let current = "0.2.21"
2525

2626
}

0 commit comments

Comments
 (0)