From 0bc829a620380281a18dc3e365bdb70dc4d452ca Mon Sep 17 00:00:00 2001 From: Soofa Date: Sat, 18 Nov 2023 21:15:57 +0300 Subject: [PATCH] Update update-abilities.yml --- .github/workflows/update-abilities.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-abilities.yml b/.github/workflows/update-abilities.yml index 637988c..605310b 100644 --- a/.github/workflows/update-abilities.yml +++ b/.github/workflows/update-abilities.yml @@ -23,15 +23,14 @@ jobs: run: | cd Dependencies RELEASE_NAME=$(curl -s "https://api.github.com/repos/Soof4/Abilities/releases/latest" | grep -oP '"tag_name": "\K(.*)(?=")') - wget -q --output-document=Dependencies/Abilities.dll "https://github.com/Soof4/Abilities/releases/download/$RELEASE_NAME/Abilities.dll" + wget -q --output-document=Abilities.dll "https://github.com/Soof4/Abilities/releases/download/$RELEASE_NAME/Abilities.dll" shell: bash - name: Push DLL to Dependencies run: | - cp Abilities.dll Dependencies/Abilities.dll git config user.name "Github Actions" git config user.email "actions@github.com" - git add Dependencies/Abilities.dll + git add . git commit -m "Update Abilities DLL" git push origin main shell: bash