Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #52 from actions/set-output
Deprecate set-output
  • Loading branch information
Yoann Chaudet authored and GitHub committed Nov 1, 2022
2 parents 55cb9c5 + eb5eb8e commit 7b44ae6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
else
tags=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
fi
echo "::set-output name=tags::$tags"
echo "tags=$tags" >> $GITHUB_OUTPUT
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/record.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
id: grep-image-content
run: |
image=$(grep -E "jekyll-build-pages.*\'" action.yml)
echo "::set-output name=image::$image"
echo "image=$image" >> $GITHUB_OUTPUT
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
id: grep-image-content
run: |
image=$(grep -E "jekyll-build-pages.*\'" action.yml)
echo "::set-output name=image::$image"
echo "image=$image" >> $GITHUB_OUTPUT
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
id: grep-image-content
run: |
image=$(grep -E "jekyll-build-pages.*\'" action.yml)
echo "::set-output name=image::$image"
echo "image=$image" >> $GITHUB_OUTPUT
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
Expand Down

0 comments on commit 7b44ae6

Please sign in to comment.