Skip to content

Commit

Permalink
Update create-release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
NanuIjaz authored Jan 28, 2024
1 parent d54c1d8 commit 088c14c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ jobs:
id: get-latest-release
run: |
latestTag=$(curl -s "https://api.github.com/repos/IntersecMBO/cardano-node/releases/latest" | jq -r '.tag_name')
echo "::set-output name=tag::$latestTag"
echo "{latestTag}={$latestTag}" >> $GITHUB_OUTPUT
- name: Create release in forked repository
run: |
git tag -a "${{ steps.get-latest-release.outputs.tag }}" -m "Release notes for ${{ steps.get-latest-release.outputs.tag }}"
git push origin "${{ steps.get-latest-release.outputs.tag }}"
git tag -a "${{ GITHUB_OUTPUT }}" -m "Release notes for ${{ GITHUB_OUTPUT }}"
git push origin "${{ GITHUB_OUTPUT }}"

0 comments on commit 088c14c

Please sign in to comment.