Skip to content

Commit 463bab8

Browse files
authored
fix: revert release (#84)
* fix: revert "chore: Release 1.0.0 (#83)" This reverts commit d55f4a6. * ci: origin/ prefix for tag branch
1 parent d55f4a6 commit 463bab8

File tree

122 files changed

+809
-819
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+809
-819
lines changed

.github/workflows/tag-release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,12 @@ jobs:
3535
VERSION=$(echo "${{ github.event.pull_request.head.ref }}" | cut -d'/' -f 2)
3636
RELEASE_BRANCH="${{ startsWith(github.event.pull_request.head.ref, 'release/') && github.event.pull_request.head.ref || github.event.pull_request.base.ref }}"
3737
38-
git tag -a $VERSION -m "$VERSION" $RELEASE_BRANCH
39-
git push origin $VERSION -f
38+
if [[ "${{ startsWith(github.event.pull_request.head.ref, 'release/') }}" == "true" ]]; then
39+
VERSION="${VERSION}.0"
40+
fi
41+
42+
git tag -a $VERSION -m "$VERSION" origin/$RELEASE_BRANCH
43+
git push origin $VERSION --follow-tags
4044
echo "version=$VERSION" | tee -a "$GITHUB_OUTPUT"
4145
echo "RELEASE_BRANCH=$RELEASE_BRANCH" | tee -a "$GITHUB_ENV"
4246

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sphinx-cli"
3-
version = "1.0.0"
3+
version = "0.1.0"
44
edition.workspace = true
55
repository.workspace = true
66
license.workspace = true

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sphinx-core"
3-
version = "1.0.0"
3+
version = "0.1.0"
44
edition.workspace = true
55
repository.workspace = true
66
license.workspace = true

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sphinx-derive"
3-
version = "1.0.0"
3+
version = "0.1.0"
44
edition.workspace = true
55
repository.workspace = true
66
license.workspace = true

eval/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sphinx-eval"
3-
version = "1.0.0"
3+
version = "0.1.0"
44
edition.workspace = true
55
repository.workspace = true
66
license.workspace = true

examples/aggregation/program/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-36 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)