Skip to content

Commit 7ef80cb

Browse files
committed
Release 0.1.0
1 parent c5568d0 commit 7ef80cb

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
matrix:
1616
include:
1717
- otp: "27.1"
18-
rebar3: 3.24.0
18+
rebar3: "3.24.0"
1919
os: ubuntu-latest
2020

2121
- otp: "26.2.5"
22-
rebar3: 3.24.0
22+
rebar3: "3.24.0"
2323
os: ubuntu-latest
2424

2525
steps:

.github/workflows/publish.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- name: Check out
13-
uses: actions/checkout@v3
12+
- uses: erlef/setup-beam@v1
13+
with:
14+
otp-version: "27.1"
15+
rebar3-version: "3.24.0"
1416

1517
- name: Setup rebar3 hex
1618
run: |
1719
mkdir -p ~/.config/rebar3/
1820
echo "{plugins, [rebar3_hex]}." >> ~/.config/rebar3/rebar.config
1921
22+
- name: Check out
23+
uses: actions/checkout@v3
24+
2025
- name: Publish to Hex.pm
2126
env:
2227
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

src/sqlc.app.src

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, sqlc, [
22
{description, "SQL compiler for Erlang"},
3-
{vsn, git},
3+
{vsn, "0.1.0"},
44
{applications, [
55
kernel,
66
stdlib,
@@ -11,6 +11,8 @@
1111
{env,[]},
1212
{modules, []},
1313

14-
{licenses, ["Apache 2.0"]},
15-
{links, []}
14+
{licenses, ["Apache-2.0"]},
15+
{links, [
16+
{"GitHub", "https://github.com/kopera/erlang-sqlc"}
17+
]}
1618
]}.

0 commit comments

Comments
 (0)