From a945d75023e51abc226a0cdd454ca54b32703af2 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sun, 29 Oct 2023 22:48:09 +0100 Subject: [PATCH] ci: Correct step names --- .github/workflows/update.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d698a70..ef8143f 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -1,4 +1,4 @@ -name: Update static API +name: Update static files on: repository_dispatch: @@ -6,7 +6,7 @@ on: jobs: update: - name: Update static API + name: Update static files runs-on: ubuntu-latest steps: - name: Clone repository @@ -19,10 +19,10 @@ jobs: with: python-version: 3.11.3 - - name: Create configuration file + - name: Write config file run: echo "${{ vars.CONFIG }}" > config.json - - name: Check for existing deployment exists + - name: Check if a deployment exists run: | if git ls-remote --exit-code --heads origin gh-pages; then echo "::set-output name=deployment-exists::true" @@ -38,7 +38,7 @@ jobs: git config user.email github@revanced.app git subtree add --prefix=static/ origin/gh-pages --squash - - name: Update static API + - name: Update static files run: | pip install requests python src/main.py @@ -46,7 +46,7 @@ jobs: - name: Commit changes uses: EndBug/add-and-commit@v9 with: - message: "chore: updated static files" + message: "chore: Update static files" fetch: false push: false