-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH Actions: Updates to use environment file for outputs
- Loading branch information
1 parent
184a9bf
commit 8366529
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
- uses: abatilo/[email protected] | ||
|
||
- id: echo-version | ||
run: echo "::set-output name=version::$(poetry version --short)" | ||
run: echo "version=$(poetry version --short)" >> $GITHUB_OUTPUT | ||
|
||
- if: ${{ github.event_name == 'push' }} | ||
run: > | ||
|
@@ -102,7 +102,7 @@ jobs: | |
type=pep440,pattern={{major}}.{{minor}},value=${{ env.VERSION }},enable=${{ env.PRERELEASE == 'false' }} | ||
- name: prepare push tag value | ||
id: push-tags-value | ||
run: echo "::set-output name=tags::${{ steps.docker-metadata.outputs.tags }}" | tr "\n" " " | sed "s/${{ env.IMAGE_NAME }}://g" | ||
run: echo "tags=${{ steps.docker-metadata.outputs.tags }}" | tr "\n" " " | sed "s/${{ env.IMAGE_NAME }}://g" >> $GITHUB_OUTPUT | ||
|
||
- name: install dependency for multi-platform builds | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters