CI: Move sha256sum calculation before registry upload
This commit is contained in:
parent
b3f3384480
commit
435e478b01
3 changed files with 5 additions and 5 deletions
|
|
@ -26,6 +26,9 @@ jobs:
|
|||
|
||||
- name: Build release binary
|
||||
run: just full-build
|
||||
- name: Calculate SHA-256 hash
|
||||
run: just shasum
|
||||
|
||||
- name: Publish to git.jutty.dev package registry
|
||||
run: |
|
||||
version=$(./target/release/en --version)
|
||||
|
|
@ -35,6 +38,3 @@ jobs:
|
|||
curl -fsSL \
|
||||
--user jutty:${{ secrets.GJD_REGISTRY_TOKEN }} \
|
||||
--upload-file target/release/en $url
|
||||
|
||||
- name: Calculate SHA-256 hash
|
||||
run: just shasum
|
||||
|
|
|
|||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -259,7 +259,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "en"
|
||||
version = "0.1.9"
|
||||
version = "0.1.10"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"serde",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "en"
|
||||
version = "0.1.9"
|
||||
version = "0.1.10"
|
||||
description = "A non-linear writing instrument."
|
||||
license = "AGPL-3.0-only"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue