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 6b81c2d commit 98ac2a3Copy full SHA for 98ac2a3
1 file changed
.github/workflows/ci.yml
@@ -206,8 +206,9 @@ jobs:
206
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # tag=v1
207
with:
208
command: deb
209
- - run: PKG_VERSION=$(cat Cargo.toml | grep -oP "^version = \"\K[\d.\d.\d]+(?=\")")
+ - id: pkg_ver
210
+ run: echo "ver=$(cat Cargo.toml | grep -oP '^version = \"\K[\d.\d.\d]+(?=\")')" >> $GITHUB_OUTPUT
211
- uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3
212
213
name: linux_x86_64_deb
- path: target/debian/teres_${PKG_VERSION}_amd64.deb
214
+ path: target/debian/teres_${{ steps.pkg_ver.outputs.ver }}_amd64.deb
0 commit comments