Skip to content
This repository was archived by the owner on Aug 2, 2024. It is now read-only.

Commit da91cf2

Browse files
committed
Fix CI branch check
1 parent b6ed541 commit da91cf2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
docker run --rm -v $(pwd):/mnt --entrypoint sh modus -c "cp ./modus /mnt/$ARTIFACT_NAME" &&
5353
./$ARTIFACT_NAME --version
5454
- name: Publish image
55-
if: github.event_name != 'pull_request' && github.branch == 'main'
55+
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
5656
run: >
5757
docker push $IMAGE_REF &&
5858
docker push $IMAGE_BASE:latest

modus-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "modus-lib"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["University College London"]
55
edition = "2018"
66
license = "AGPL-3.0"

modus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "modus"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["University College London"]
55
edition = "2018"
66
default-run = "modus"
@@ -21,7 +21,7 @@ name = "buildkit-frontend"
2121
path = "src/buildkit_frontend.rs"
2222

2323
[dependencies]
24-
modus-lib = { version = "=0.1.5", path = "../modus-lib" }
24+
modus-lib = { version = "=0.1.6", path = "../modus-lib" }
2525

2626
clap = { version = "3", features = ["cargo"] }
2727
colored = "2"

0 commit comments

Comments
 (0)