From 6325b8bd367b656fd868c69debe6ce297de5b34b Mon Sep 17 00:00:00 2001 From: Vassyli Date: Mon, 4 Jan 2021 19:26:54 +0100 Subject: [PATCH] Adds a git add command to the update package workflow. --- .github/workflows/update-package-index.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-package-index.yml b/.github/workflows/update-package-index.yml index 6c820f2..43cf316 100644 --- a/.github/workflows/update-package-index.yml +++ b/.github/workflows/update-package-index.yml @@ -36,4 +36,4 @@ jobs: run: cd packages && git config remote.origin.url 'https://Vassyli:${{ secrets.GH_TOKEN }}@github.com/lotgd/packages.git' && cd .. - name: "Commit changes and push to origin" - run: cd packages && git commit -a -m "Updated packages" && git push origin master && cd .. + run: cd packages && git add build/* && git commit -a -m "Updated packages" && git push origin master && cd ..