We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e126b66 commit fe6aaffCopy full SHA for fe6aaff
1 file changed
.github/workflows/release.yml
@@ -73,8 +73,14 @@ jobs:
73
node-version: 20
74
cache: pnpm
75
76
- - name: bump version to ${{ github.ref }}
77
- run: pnpx replace-in-files-cli --string="0.191.0" --replacement="${{ github.ref }}" "**/package.json"
+ - id: version
+ run: echo "value=$(echo ${{ github.ref }} | sed 's/refs\/tags\///'" >> $GITHUB_OUTPUT
78
+ - name: bump version to ${{ steps.version.outputs.value }}
79
+ run: |
80
+ pnpx replace-in-files-cli \
81
+ --string="0.191.0" \
82
+ --replacement="${{ steps.version.outputs.value }}" \
83
+ "**/package.json"
84
85
- name: pnpm instal
86
run: pnpm install --ignore-scripts
0 commit comments