We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f421d commit ea4e629Copy full SHA for ea4e629
.github/workflows/dp-inntekt-grpc-build.yml
@@ -41,7 +41,7 @@ jobs:
41
- name: Set release tag
42
run: |
43
export TAG_NAME="$(TZ="Europe/Oslo" date +%Y.%m.%d-%H.%M).$(echo $GITHUB_SHA | cut -c 1-12)"
44
- echo "::set-env name=RELEASE_TAG::$TAG_NAME"
+ echo "RELEASE_TAG=$TAG_NAME" >> $GITHUB_ENV
45
46
- name: Set changelog
47
# (Escape newlines see https://github.com/actions/create-release/issues/25)
@@ -50,7 +50,7 @@ jobs:
50
text="${text//$'%'/%25}"
51
text="${text//$'\n'/%0A}"
52
text="${text//$'\r'/%0D}"
53
- echo "::set-env name=CHANGELOG::$text"
+ echo "CHANGELOG=$text" >> $GITHUB_ENV
54
55
- name: Create Release
56
id: create_release
0 commit comments