Skip to content

Commit f7979cb

Browse files
committed
switch from set to env vars
1 parent d1c0a0b commit f7979cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/workflow-docker-manual.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ jobs:
4343
run: |
4444
test_tag=$(date +%Y%m%d%H%M%S)
4545
echo "[debug] Generated test tag name is '${test_tag}'"
46-
echo "::echo "test_tag=$test_tag" >> $GITHUB_OUTPUT"
46+
echo "test_tag=$test_tag" >> $GITHUB_OUTPUT
4747
id: generate_temporary_tag_name
4848
- name: Generate app name
4949
shell: bash
5050
run: |
5151
app_name=$(echo "${GITHUB_REPOSITORY}" | grep -P -o -m 1 '(?<=/arch-).*')
5252
echo "[debug] Generated app name is '${app_name}'"
53-
echo "::set-output name=app_name::$app_name"
53+
echo "app_name=$app_name" >> $GITHUB_OUTPUT
5454
id: generate_app_name
5555
- name: Build Docker image and tag
5656
uses: nick-fields/retry@v2

.github/workflows/workflow-docker-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ jobs:
6161
run: |
6262
test_tag=$(date +%Y%m%d%H%M%S)
6363
echo "[debug] Generated test tag name is '${test_tag}'"
64-
echo "::echo "test_tag=$test_tag" >> $GITHUB_OUTPUT"
64+
echo "test_tag=$test_tag" >> $GITHUB_OUTPUT
6565
id: generate_temporary_tag_name
6666
- name: Generate app name
6767
shell: bash
6868
run: |
6969
app_name=$(echo "${GITHUB_REPOSITORY}" | grep -P -o -m 1 '(?<=/arch-).*')
7070
echo "[debug] Generated app name is '${app_name}'"
71-
echo "::set-output name=app_name::$app_name"
71+
echo "app_name=$app_name" >> $GITHUB_OUTPUT
7272
id: generate_app_name
7373
- name: Build Docker image and tag
7474
uses: nick-fields/retry@v2

0 commit comments

Comments
 (0)