@@ -48,30 +48,30 @@ jobs:
4848 id : upload-release-asset
4949 env :
5050 token-defined : ${{ secrets.GH_UNIFY_ACCESS_TOKEN != '' }}
51- if : ${{ env.token-defined }} && startsWith(github.ref, 'refs/tags/')
51+ if : ${{ env.token-defined && startsWith(github.ref, 'refs/tags/') }}
5252 uses : softprops/action-gh-release@v2
5353 with :
5454 files : build/dist/*
5555 # yamllint disable-line rule:line-length
5656 # TODO: Sign asset: https://github.com/softprops/action-gh-release/issues/580#2025
5757 token : ${{ secrets.GH_UNIFY_ACCESS_TOKEN || github.token }}
58- - name : Upload pages artifact
59- id : deployment
60- if : startsWith(github.ref, 'refs/tags/') && matrix.arch == 'amd64'
61- 62- with :
63- path : docs/
64- deploy :
65- needs : build
66- permissions :
67- pages : write
68- id-token : write
69- environment :
70- name : github-pages
71- url : ${{ steps.deployment.outputs.page_url }}
72- runs-on : ubuntu-24.04
73- steps :
74- - name : Deploy to GitHub Pages
75- id : deployment
76- uses : actions/deploy-pages@v4
77- if : startsWith(github.ref, 'refs/tags/')
58+ # - name: Upload pages artifact
59+ # id: deployment
60+ # if: startsWith(github.ref, 'refs/tags/') && matrix.arch == 'amd64'
61+ 62+ # with:
63+ # path: docs/
64+ # deploy:
65+ # needs: build
66+ # permissions:
67+ # pages: write
68+ # id-token: write
69+ # environment:
70+ # name: github-pages
71+ # url: ${{ steps.deployment.outputs.page_url }}
72+ # runs-on: ubuntu-24.04
73+ # steps:
74+ # - name: Deploy to GitHub Pages
75+ # id: deployment
76+ # uses: actions/deploy-pages@v4
77+ # if: startsWith(github.ref, 'refs/tags/')
0 commit comments