From d006aa3ded96cb3615e3b499162739b87b216de8 Mon Sep 17 00:00:00 2001 From: Vassyli Date: Wed, 30 Dec 2020 17:59:05 +0100 Subject: [PATCH] Bugfix --- .github/workflows/update-package-index.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-package-index.yml b/.github/workflows/update-package-index.yml index ab66052..4b54b9c 100644 --- a/.github/workflows/update-package-index.yml +++ b/.github/workflows/update-package-index.yml @@ -31,7 +31,7 @@ jobs: run: satis/bin/satis build packages/satis.json packages/build - name: Set git url with credentials for pushing - run: git remote add origin https://Vassyli:${{ secrets.GH_TOKEN }}@github.com/lotgd/packages.git + run: cd packages && git remote add origin https://Vassyli:${{ secrets.GH_TOKEN }}@github.com/lotgd/packages.git - name: "Commit changes and push to origin" - run: cd packages && git commit -a -m "Updated packages" && git push origin master + run: git commit -a -m "Updated packages" && git push origin master