X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fclone-count.yml;h=cc067e88a8481d6f6afeda6099dc5bf4bd9675ae;hb=156c5f4ee0466adeb90e1e131e98b3f271955787;hp=b7898a8f615da6e2711cb04a83481298c1affb2d;hpb=a43b0b4786196687d535dc0ef6412a04b5ffbaff;p=e-mobility-charging-stations-simulator.git diff --git a/.github/workflows/clone-count.yml b/.github/workflows/clone-count.yml index b7898a8f..cc067e88 100644 --- a/.github/workflows/clone-count.yml +++ b/.github/workflows/clone-count.yml @@ -28,21 +28,21 @@ jobs: if gh secret list | grep -q "GIST_ID" then echo "GIST_ID found" - echo ::set-output name=GIST::${{ secrets.GIST_ID }} + echo "GIST=${{ secrets.GIST_ID }}" >> $GITHUB_OUTPUT curl https://gist.githubusercontent.com/${{ github.actor }}/${{ secrets.GIST_ID }}/raw/clone.json > clone_before.json if cat clone_before.json | grep '404: Not Found'; then echo "GIST_ID not valid anymore. Creating another gist..." gist_id=$(gh gist create clone.json | awk -F / '{print $NF}') echo $gist_id | gh secret set GIST_ID - echo ::set-output name=GIST::$gist_id + echo "GIST=${gist_id}" >> $GITHUB_OUTPUT cp clone.json clone_before.json - git rm --ignore-unmatch CLONE.md + git rm --ignore-unmatch CLONE.md fi else echo "GIST_ID not found. Creating a gist..." gist_id=$(gh gist create clone.json | awk -F / '{print $NF}') echo $gist_id | gh secret set GIST_ID - echo ::set-output name=GIST::$gist_id + echo "GIST=${gist_id}" >> $GITHUB_OUTPUT cp clone.json clone_before.json fi