Skip to content

Commit

Permalink
Merge pull request #16 from typemytype/main
Browse files Browse the repository at this point in the history
Update pr_to_tag.yml
  • Loading branch information
typemytype authored Mar 12, 2024
2 parents 8d1dcfd + e80534d commit 5096248
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr_to_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5096248

Please sign in to comment.