Skip to content

Commit fd93262

Browse files
committed
ci: fix release process
1 parent d43f84e commit fd93262

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
uses: actions/upload-artifact@v3
9797
with:
9898
name: deb-armhf
99-
path: target/arm-unknown-linux-gnueabihf/debian/bloop-box_3.2.0_armhf.deb
99+
path: target/arm-unknown-linux-gnueabihf/debian/bloop-box_*_armhf.deb
100100

101101
build-arm64:
102102
needs: [test-for-release]
@@ -121,7 +121,7 @@ jobs:
121121
uses: actions/upload-artifact@v3
122122
with:
123123
name: deb-arm64
124-
path: target/aarch64-unknown-linux-gnu/debian/bloop-box_3.2.0_arm64.deb
124+
path: target/aarch64-unknown-linux-gnu/debian/bloop-box_*_arm64.deb
125125

126126
release:
127127
needs: [build-armhf, build-arm64]
@@ -144,7 +144,7 @@ jobs:
144144

145145
- name: Update version
146146
run: |
147-
sed -i '/\[package\]/,/^version = "[^"]*"$/ s/^version = "[^"]*"$/version = "'"${{ steps.semantic.outputs.new_release_version }}"'"/' Cargo.toml
147+
sed -i '/\[package\]/,/^version = "[^"]*"$/ s/^version = "[^"]*"$/version = "'"${{ needs.test-for-release.outputs.new_release_version }}"'"/' Cargo.toml
148148
cargo update --package bloop-box --offline
149149
150150
- name: Semantic Release

0 commit comments

Comments
 (0)