Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asabil committed Oct 19, 2024
1 parent c5568d0 commit 7ef80cb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
matrix:
include:
- otp: "27.1"
rebar3: 3.24.0
rebar3: "3.24.0"
os: ubuntu-latest

- otp: "26.2.5"
rebar3: 3.24.0
rebar3: "3.24.0"
os: ubuntu-latest

steps:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out
uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: "27.1"
rebar3-version: "3.24.0"

- name: Setup rebar3 hex
run: |
mkdir -p ~/.config/rebar3/
echo "{plugins, [rebar3_hex]}." >> ~/.config/rebar3/rebar.config
- name: Check out
uses: actions/checkout@v3

- name: Publish to Hex.pm
env:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
Expand Down
8 changes: 5 additions & 3 deletions src/sqlc.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, sqlc, [
{description, "SQL compiler for Erlang"},
{vsn, git},
{vsn, "0.1.0"},
{applications, [
kernel,
stdlib,
Expand All @@ -11,6 +11,8 @@
{env,[]},
{modules, []},

{licenses, ["Apache 2.0"]},
{links, []}
{licenses, ["Apache-2.0"]},
{links, [
{"GitHub", "https://github.com/kopera/erlang-sqlc"}
]}
]}.

0 comments on commit 7ef80cb

Please sign in to comment.