From cc5c1dde78159f0313621e46fe4882dcfd78f200 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Sun, 28 Jan 2024 20:44:09 +0100 Subject: [PATCH] Lint --- .github/workflows/release_tag.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release_tag.yml b/.github/workflows/release_tag.yml index de6605c..8dae606 100644 --- a/.github/workflows/release_tag.yml +++ b/.github/workflows/release_tag.yml @@ -9,11 +9,11 @@ jobs: update-tag: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4.1.0 + - name: Checkout code + uses: actions/checkout@v4.1.0 - - name: Move and push tag - run: | - git tag -f stable ${{ github.event.release.tag_name }} - git push -f origin stable + - name: Move and push tag + run: | + git tag -f stable ${{ github.event.release.tag_name }} + git push -f origin stable ...