Skip to content

Commit 48dc070

Browse files
authored
Beta release (#57)
* Update release-worker.yml * Update versions
1 parent 5c8f086 commit 48dc070

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/release-worker.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ jobs:
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
23+
- name: Ensure tag is on main
24+
run: |
25+
git fetch origin main
26+
git merge-base --is-ancestor "$GITHUB_SHA" origin/main
2027
2128
- name: Set up Python ${{ matrix.python-version }}
2229
uses: actions/setup-python@v5
@@ -32,7 +39,7 @@ jobs:
3239
- name: Build
3340
run: scripts/build-worker.sh ${{ env.LINUX_TARGET }}
3441

35-
- name: Package binary
42+
- name: Package the worker
3643
run: |
3744
cd dist
3845
mv fluxqueue-worker-${{ env.LINUX_TARGET }} fluxqueue-worker

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/fluxqueue-common", "crates/fluxqueue-worker"]
33

44
[package]
55
name = "fluxqueue_core"
6-
version = "0.1.0-rc1"
6+
version = "0.1.0-beta.1"
77
edition = "2024"
88

99
[lib]

crates/fluxqueue-worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fluxqueue-worker"
3-
version = "0.1.0-rc1"
3+
version = "0.1.0-beta.1"
44
edition = "2024"
55

66
[lib]

0 commit comments

Comments
 (0)