Skip to content

Commit

Permalink
ci: add building and uploading assets on release
Browse files Browse the repository at this point in the history
docs(readme): add new line to features
  • Loading branch information
aloima committed Nov 4, 2024
1 parent f5a3365 commit 63affa6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: C/C++ CI

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: make
run: make

- name: On release
uses: startsWith(github.ref, 'refs/tags/')
with:
files: telly
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ A key-value database project for educational purposes.
+ Supports integer, string, null, boolean, list and hash table types
+ Provides atomicity when saving to the database file
+ Provides saving to the database file using a background thread
+ Provides authorization system with permissions

> Look at:
> [docs/SPECS.md](./docs/SPECS.md) for more technical information,
> [docs/FILE.md](./docs/FILE.md) for information about provided files by tellydb
> [docs/FILE.md](./docs/FILE.md) for information about provided files by tellydb,
> [docs/COMMANDS.md](./docs/COMMANDS.md) for information about commands
## Quick Start
Expand Down

0 comments on commit 63affa6

Please sign in to comment.