Skip to content

Commit dbddbae

Browse files
committed
refactor: remove comment
1 parent 36d271c commit dbddbae

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: ["main"]
66
paths:
77
- "apps/docs/**"
8-
# Allows you to run this workflow manually from the Actions tab on GitHub.
8+
99
workflow_dispatch:
1010

1111
jobs:
@@ -37,28 +37,23 @@ jobs:
3737

3838
- name: Upload static files as artifact
3939
id: deployment
40-
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
40+
uses: actions/upload-pages-artifact@v3
4141
with:
4242
path: apps/docs/out/
4343

44-
# Deploy job
4544
deploy:
46-
# Add a dependency to the build job
4745
needs: build
4846

49-
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
5047
permissions:
51-
pages: write # to deploy to Pages
52-
id-token: write # to verify the deployment originates from an appropriate source
48+
pages: write
49+
id-token: write
5350

54-
# Deploy to the github-pages environment
5551
environment:
5652
name: github-pages
5753
url: ${{ steps.deployment.outputs.page_url }}
5854

59-
# Specify runner + deployment step
6055
runs-on: ubuntu-latest
6156
steps:
6257
- name: Deploy to GitHub Pages
6358
id: deployment
64-
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action
59+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)