diff --git a/.github/workflows/publish-docs.yaml b/.github/workflows/publish-docs.yaml index 1c1eb52..c2591e1 100644 --- a/.github/workflows/publish-docs.yaml +++ b/.github/workflows/publish-docs.yaml @@ -24,8 +24,8 @@ jobs: done - name: Update version strings run: | - find docs -type f --exec sed -i "s/%VERSION%/${{ inputs.build_version }}/" {} \; - run: | + find docs -type f -exec sed -i "s/%VERSION%/${{ inputs.build_version }}/" {} \; + - run: | echo ::group::Archive artifact tar -C "_site" \ -cvf "$RUNNER_TEMP/artifact.tar" \ diff --git a/.github/workflows/release-meshchat.yaml b/.github/workflows/release-meshchat.yaml index ee90504..861317f 100644 --- a/.github/workflows/release-meshchat.yaml +++ b/.github/workflows/release-meshchat.yaml @@ -71,14 +71,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.RELEASE_IT_TOKEN }} update-documentation: - runs-on: ubuntu-latest needs: create-release - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - fetch-tags: true - - uses: - ./.github/workflows/publish-docs.yaml - with: - build_version: ${{ needs.create-release.outputs.build_version }} + uses: + ./.github/workflows/publish-docs.yaml + with: + build_version: ${{ needs.create-release.outputs.build_version }}