We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d42fc commit 0779e23Copy full SHA for 0779e23
.github/workflows/publish.yml
@@ -24,8 +24,13 @@ jobs:
24
- run: flutter test
25
26
publish:
27
- needs: test
28
permissions:
29
id-token: write # Required for authentication using OIDC
30
- uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
31
-
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
32
+ - uses: dart-lang/setup-dart@v1
33
+ - name: Install dependencies
34
+ run: flutter pub get
35
+ - name: Publish
36
+ run: dart pub publish --force
website/pages/docs/overview/_meta.json
@@ -1,5 +1,5 @@
1
{
2
- "index": "Introduction",
+ "introduction": "Introduction",
3
"getting-started": "Getting started",
4
"utility-first": "Utility-First",
5
"comparison": "Comparative Overview",
website/pages/docs/overview/index.mdx website/pages/docs/overview/introduction.mdx
0 commit comments