Skip to content

Commit 27c4999

Browse files
committed
Fix release hiccups
1 parent b4d1df8 commit 27c4999

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/release_crates_io.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ jobs:
2222
run: cargo test
2323

2424
- name: Publish to crates.io
25-
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}
25+
env:
26+
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
27+
run: cargo publish

.github/workflows/release_github.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
sudo apt-get install -y musl-tools
6363
6464
- name: Build
65-
run: cargo build --release --target ${{ matrix.target }}
65+
run: cargo build --locked --release --target ${{ matrix.target }}
6666

6767
- name: Prepare binary for upload
6868
id: paths
@@ -81,4 +81,4 @@ jobs:
8181
- name: Upload release binary
8282
env:
8383
GH_TOKEN: ${{ github.token }}
84-
run: gh release upload ${VERSION} ${{ steps.paths.outputs.PKG_NAME }}
84+
run: gh release upload ${VERSION} ${{ steps.paths.outputs.PKG_NAME }}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "celq"
33
description = "A CEL command-line query tool for JSON data"
4-
version = "0.1.1-alpha.3"
4+
version = "0.1.1-alpha.4"
55
edition = "2024"
66
rust-version = "1.90"
77
authors = ["Ivan Carvalho <ivancarvalho@gatech.edu>"]

0 commit comments

Comments
 (0)