You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ACTION.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Deploy beautiful documentation to GitHub Pages with a single step.
4
4
5
-
> **Note**: This action is currently in active development. Use `@main` to get the latest features. Once stable, versioned releases (`@v1`) will be available.
5
+
> **Note**: This action is currently in active development. Use `@v1` to get the latest features. Once stable, versioned releases (`@v1`) will be available.
6
6
7
7
## Quick Start
8
8
@@ -31,7 +31,7 @@ jobs:
31
31
- uses: actions/checkout@v4
32
32
33
33
- name: Build and deploy documentation
34
-
uses: bartTC/microdocs@main
34
+
uses: bartTC/microdocs@v1
35
35
with:
36
36
files: |
37
37
README.md
@@ -73,7 +73,7 @@ Your documentation will be available at `https://<username>.github.io/<repositor
73
73
74
74
```yaml
75
75
- name: Build and deploy documentation
76
-
uses: bartTC/microdocs@main
76
+
uses: bartTC/microdocs@v1
77
77
with:
78
78
files: |
79
79
README.md
@@ -103,7 +103,7 @@ To just build the documentation without deploying:
103
103
104
104
```yaml
105
105
- name: Build documentation
106
-
uses: bartTC/microdocs@main
106
+
uses: bartTC/microdocs@v1
107
107
with:
108
108
files: 'README.md CHANGELOG.md'
109
109
title: 'My Project Documentation'
@@ -117,7 +117,7 @@ Use your own HTML template:
117
117
118
118
```yaml
119
119
- name: Build and deploy documentation
120
-
uses: bartTC/microdocs@main
120
+
uses: bartTC/microdocs@v1
121
121
with:
122
122
files: |
123
123
README.md
@@ -131,7 +131,7 @@ Override the automatic repository URL:
131
131
132
132
```yaml
133
133
- name: Build and deploy documentation
134
-
uses: bartTC/microdocs@main
134
+
uses: bartTC/microdocs@v1
135
135
with:
136
136
files: 'README.md'
137
137
repo-url: 'https://github.com/myorg/myrepo'
@@ -143,7 +143,7 @@ Change where the HTML file is generated:
143
143
144
144
```yaml
145
145
- name: Build and deploy documentation
146
-
uses: bartTC/microdocs@main
146
+
uses: bartTC/microdocs@v1
147
147
with:
148
148
files: 'README.md CHANGELOG.md'
149
149
output: 'public/docs.html'
@@ -155,7 +155,7 @@ Change the directory used for deployment artifacts:
0 commit comments