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 dae3455 commit 5c1f7b1Copy full SHA for 5c1f7b1
.github/workflows/build.yaml
@@ -98,7 +98,25 @@ jobs:
98
with:
99
name: pages
100
path: dist/design
101
-# TODO: build design system
+
102
+ publish-documentation:
103
+ if: github.ref_name == github.event.repository.default_branch
104
+ runs-on: ubuntu-22.04
105
+ permissions:
106
+ pages: write
107
+ id-token: write
108
+ needs:
109
+ - documentation
110
+ steps:
111
+ - uses: actions/configure-pages@v5
112
+ - uses: actions/download-artifact@v4
113
+ with:
114
+ name: pages
115
+ path: dist/design
116
+ - uses: actions/upload-pages-artifact@v3
117
118
+ path: 'dist/design'
119
+ - uses: actions/deploy-pages@v4
120
# TODO: add release job
121
# TODO: build PR previews
122
# TODO: e2e test
0 commit comments