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 ccef477 commit add74c1Copy full SHA for add74c1
.github/workflows/release-please.yml
@@ -17,17 +17,26 @@ jobs:
17
id: release
18
with:
19
release-type: node
20
+
21
- uses: actions/checkout@v4
22
if: ${{ steps.release.outputs.release_created }}
23
24
- uses: actions/setup-node@v4
25
26
node-version: 22
27
registry-url: 'https://registry.npmjs.org'
28
29
30
- run: npm ci
31
32
33
- run: npm run build
34
35
36
+ - name: Replace GitHub-specific markdown
37
+ run: |
38
+ sed -i 's/\[!IMPORTANT\]/### Important 💡/g' README.md
39
40
- name: Publish to NPM
41
run: npm publish
42
env:
0 commit comments