We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba5befe commit b6e14bfCopy full SHA for b6e14bf
.github/workflows/publish-latest-plugin-zip.yml
@@ -22,6 +22,9 @@ jobs:
22
with:
23
fallback: 1.0.0
24
25
+ - name: Update version to latest trunk commit
26
+ run: "find . -type f -exec sed -i 's/0.0.0-placeholder/${{ steps.get_tag.outputs.tag }}-dev-${{ github.sha }}/g' {} +"
27
+
28
- name: Setup Node.js
29
uses: actions/setup-node@v4
30
@@ -30,9 +33,6 @@ jobs:
33
- name: Install dependencies
31
34
run: npm ci
32
35
- - name: Update version to latest trunk commit
- run: "find . -type f -exec sed -i 's/0.0.0-placeholder/${{ steps.get_tag.outputs.tag }}-dev-${{ github.sha }}/g' {} +"
-
36
- name: Build and create plugin zip
37
run: npm run plugin-zip
38
0 commit comments