Skip to content

Commit

Permalink
Rename project to Brief
Browse files Browse the repository at this point in the history
This commit renames the project as well as adds github actions CI
  • Loading branch information
pinkwah committed Nov 13, 2023
1 parent 26e6708 commit dcd1057
Show file tree
Hide file tree
Showing 37 changed files with 160 additions and 533 deletions.
5 changes: 1 addition & 4 deletions .envrc
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
watch_file devenv.nix
watch_file devenv.yaml
watch_file devenv.lock
eval "$(devenv print-dev-env)"
use flake
10 changes: 0 additions & 10 deletions .github/dependabot.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v23
- uses: cachix/cachix-action@v12
with:
name: pinkwah
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

- name: Build brief-cli
run: nix build .#brief-cli

- name: Upload artifact
uses: actions/[email protected]
with:
name: brief-cli.zip
path: result/bin/brief-cli
80 changes: 0 additions & 80 deletions .github/workflows/ci.yml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/publish.yml

This file was deleted.

14 changes: 8 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Generated by scripts
/target/
/tmp/
/vendor/
target/
tmp/
vendor/

# These are backup files generated by rustfmt
**/*.rs.bk

# Example nix directory
/.nix/

# Devenv
.devenv*
devenv.local.nix
# Direnv
/.direnv/

# Nix build
result
Loading

0 comments on commit dcd1057

Please sign in to comment.