Skip to content

Commit

Permalink
The set-output command is deprecated and will be disabled soon.
Browse files Browse the repository at this point in the history
Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

Signed-off-by: Nicolas-Peiffer <102670102+Nicolas-Peiffer@users.noreply.github.com>
  • Loading branch information
Nicolas-Peiffer committed Nov 15, 2024
1 parent 155b52b commit 2f2304a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/base-container-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:
- name: Convert repository name to lowercase
id: convert
run: |
echo "::set-output name=lowercase::$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')"
echo "lowercase=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
shell: bash

use-lowercase-repo:
needs: set-lowercase-repository
Expand Down

0 comments on commit 2f2304a

Please sign in to comment.