We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04e8254 commit 1f8046eCopy full SHA for 1f8046e
.github/workflows/deploy-docs.yml
@@ -19,8 +19,10 @@ jobs:
19
uses: actions/checkout@v4
20
with:
21
ref: ${{ github.event.release.tag_name }}
22
- - name: Print latest release tag
23
- run: echo"${{ github.event.release.tag_name }}"
+ - name: Verify release commit
+ run: |
24
+ echo "Checked out commit: $(git rev-parse HEAD)"
25
+ echo "Expected tag: ${{ github.event.release.tag_name }}"
26
- name: prepare temporary folder for build
27
run: | # Creates a temporary "docs" folder within the existing "docs" folder because the mkdocs.yml must be in the parent folder of the markdown pages
28
cd docs
0 commit comments