Skip to content

Commit 5e8c284

Browse files
authored
Merge pull request #6 from lupodevelop/release/workflow
Release/workflow
2 parents 02a73d2 + eb48dc8 commit 5e8c284

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ jobs:
103103
HEXPM_API_KEY: ${{ secrets.HEX_API_KEY }}
104104
run: |
105105
echo "Publishing package to Hex..."
106-
gleam publish --yes
106+
# For versions < 1.0.0, gleam publish requires explicit confirmation
107+
# We pipe the required text to accept publishing 0.x versions
108+
echo "I am not using semantic versioning" | gleam publish --yes
107109
108110
- name: Create GitHub Release
109111
if: startsWith(github.ref, 'refs/tags/')

gleam.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "sparkling"
2-
version = "0.1.0"
2+
version = "1.0.0"
33
description = "A fast, type-safe ClickHouse client for Gleam with composable queries"
44
licenses = ["Apache-2.0"]
55
authors = ["Scaratti Daniele aka lupodevelp"]

0 commit comments

Comments
 (0)