Container: Replace set-output command with environment file

Announced in:
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
Badlop 2023-01-16 13:46:51 +01:00
parent ce10bed5d8
commit 21c0aaf417
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ jobs:
- name: Get git describe
id: gitdescribe
run: echo "::set-output name=ver::$(git describe --tags)"
run: echo "ver=$(git describe --tags)" >> $GITHUB_OUTPUT
- name: Extract metadata (tags, labels) for Docker
id: meta