From e80534d520513f413c83a208dd78c08a5a95aedd Mon Sep 17 00:00:00 2001 From: Frederik Berlaen Date: Tue, 12 Mar 2024 22:49:18 +0100 Subject: [PATCH] Update pr_to_tag.yml --- .github/workflows/pr_to_tag.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr_to_tag.yml b/.github/workflows/pr_to_tag.yml index 85588f6..63b1b8d 100644 --- a/.github/workflows/pr_to_tag.yml +++ b/.github/workflows/pr_to_tag.yml @@ -13,19 +13,19 @@ jobs: - uses: actions/checkout@v4 - name: Read yaml - uses: teunmooij/yaml@v1 + uses: actions-tools/yaml-outputs@v2 id: info-action with: - from-file: info.yaml + file-path: info.yaml - name: Content yaml run : | - echo ${{ steps.info-action.outputs.data }} - echo ${{ steps.info-action.outputs.data['version'] }} + echo ${{ steps.info-action.outputs }} + echo ${{ steps.info-action.outputs.version }} - name: Create tag if not present uses: rickstaa/action-create-tag@v1 continue-on-error: true with: - tag: ${{ steps.info-action.outputs.data['version'] }} + tag: ${{ steps.info-action.outputs.version }} force_push_tag: true