aemdm 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -201,7 +201,7 @@ npm publish
|
|
|
201
201
|
|
|
202
202
|
### Automated npm publish from GitHub
|
|
203
203
|
|
|
204
|
-
The repository includes a GitHub Actions workflow that publishes to npm when you push a version tag like `v0.1.
|
|
204
|
+
The repository includes a GitHub Actions workflow that publishes to npm when you push a version tag like `v0.1.3` or publish a GitHub release for that tag.
|
|
205
205
|
|
|
206
206
|
Required setup:
|
|
207
207
|
|
|
@@ -214,8 +214,8 @@ Add `NPM_TOKEN` as a GitHub repository secret with permission to publish the `ae
|
|
|
214
214
|
Release flow:
|
|
215
215
|
|
|
216
216
|
```bash
|
|
217
|
-
git tag v0.1.
|
|
218
|
-
git push origin v0.1.
|
|
217
|
+
git tag v0.1.3
|
|
218
|
+
git push origin v0.1.3
|
|
219
219
|
```
|
|
220
220
|
|
|
221
221
|
The workflow verifies that the tag matches the `version` field in `package.json`, runs `lint`, `build`, and `test`, and then publishes the package.
|