diff --git a/.github/workflows/create-version.yml b/.github/workflows/create-version.yml index 9ff588f..b426c3d 100644 --- a/.github/workflows/create-version.yml +++ b/.github/workflows/create-version.yml @@ -20,4 +20,4 @@ jobs: - name: Create version of docs for branch 🚀 uses: readmeio/rdme@v8 with: - rdme: versions:create 1.0-${{ env.BRANCH_VERSION }} --fork=1.0 --main=false --beta=true --deprecated=false --isPublic=false --key=${{ secrets.README_API_KEY }} + rdme: versions:create 1.0-${{ env.BRANCH_VERSION }} --key=${{ secrets.README_API_KEY }} --fork=1.0 --main=false --beta=true --deprecated=false --isPublic=false diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index d0cab19..18380fb 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -25,4 +25,4 @@ jobs: - name: Run `docs` command 🚀 uses: readmeio/rdme@v8 with: - rdme: docs v1.0 --key=${{ secrets.README_API_KEY }} --version=1.0 + rdme: docs v1.0 --key=${{ secrets.README_API_KEY }} diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml index 5a65d31..38ebe53 100644 --- a/.github/workflows/update-version.yml +++ b/.github/workflows/update-version.yml @@ -15,7 +15,12 @@ jobs: BRANCH_VERSION=$(echo $BRANCH_NAME | tr -cd '0-9.') echo "BRANCH_VERSION=$BRANCH_VERSION" >> $GITHUB_ENV + - name: DryRun for debugging + uses: readmeio/rdme@v8 + with: + rdme: docs 1.0-${{ env.BRANCH_VERSION }} --key=${{ secrets.README_API_KEY }} --dryRun + - name: Update version of docs for branch 🚀 uses: readmeio/rdme@v8 with: - rdme: docs 1.0-${{ env.BRANCH_VERSION }} --version=${{ env.BRANCH_VERSION }} --key=${{ secrets.README_API_KEY }} \ No newline at end of file + rdme: docs 1.0-${{ env.BRANCH_VERSION }} --key=${{ secrets.README_API_KEY }} \ No newline at end of file