Skip to content

Commit

Permalink
fix typo in conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
manuellysuzik authored Aug 7, 2023
1 parent abb8849 commit 61e08c1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,12 @@ jobs:
with:
fetch-depth: 0
- name: Git Setup
id: git_setup
run: |
LATEST_TAG=$(git describe --tags --always --abbrev=0)
BRANCH_NAME="documentation-ref_$LATEST_TAG"
git config user.name ${{ secrets.GITLAB_USER }}
git config user.email ${{ secrets.GITLAB_EMAIL }}
if [[ $(git remote add origin $GITLAB_DOC_URL) == 3 ]];; then exit 0; else exit 1; fi
if [[ $(git remote add origin $GITLAB_DOC_URL) == 3 ]]; then exit 0; else exit 1; fi
- name: Update Gitlab Documentation
run: |
git checkout -b $BRANCH_NAME
Expand Down

0 comments on commit 61e08c1

Please sign in to comment.