Skip to content

Commit

Permalink
added a logo
Browse files Browse the repository at this point in the history
  • Loading branch information
kolja committed Dec 5, 2024
1 parent 9ba1843 commit 8346262
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 9 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,21 @@ on:
workflow_dispatch:

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y pkg-config libssl-dev
- name: Run cargo test
run: cargo test --all --release

create-release:
needs: run-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -19,17 +33,12 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

upload-assets:
needs:
- create-release
needs: create-release
strategy:
matrix:
include:
# - target: x86_64-unknown-linux-gnu
# os: ubuntu-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
# - target: x86_64-apple-darwin
# os: macos-latest
- target: aarch64-apple-darwin
os: macos-latest
runs-on: ${{ matrix.os }}
Expand All @@ -45,4 +54,3 @@ jobs:
bin: orca
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orca"
version = "0.1.8"
version = "0.1.9"
edition = "2021"

[dependencies]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

<img src="./orca-logo.svg" alt="an orca whale reading a book" width="200px" height="200px">

# ORCA

![latest](https://img.shields.io/github/v/tag/kolja/orca)
Expand Down
63 changes: 63 additions & 0 deletions orca-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8346262

Please sign in to comment.