Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set Up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Setup Rust stable
uses: dtolnay/rust-toolchain@stable

- name: install system dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
with:
bun-version: latest

- name: install Rust stable
- name: Setup Rust stable
uses: dtolnay/rust-toolchain@stable

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'Format front- and backend' step
Uses Step
uses 'dtolnay/rust-toolchain' with ref 'stable', not a pinned commit hash

- name: install bun dependencies
run: bun i
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
bun-version: latest
- run: bun i

- name: install Rust stable
- name: Setup Rust stable
uses: dtolnay/rust-toolchain@stable

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'publish' step
Uses Step
uses 'dtolnay/rust-toolchain' with ref 'stable', not a pinned commit hash
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}

Expand All @@ -57,3 +57,4 @@
releaseDraft: true
prerelease: false
args: ${{ matrix.args }}

35 changes: 33 additions & 2 deletions .github/workflows/sem-rel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:

jobs:
release:
release-frontend:
runs-on: ubuntu-24.04
permissions:
contents: write
Expand All @@ -19,10 +19,41 @@ jobs:
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- run: bun i
- run: bun test
- name: Release

- name: Release Bun
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bunx semantic-release

release-backend:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- run: bun i

- name: Setup Cargo
uses: dtolnay/rust-toolchain@stable

- name: Release Crates
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CRATES_TOKEN }}
ignore-unpublished-changes: true






2 changes: 1 addition & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
run: bun tauri build

- name: Build Cli
run: cargo build -p episkos_cli
run: cargo build -p episko_cli
16 changes: 8 additions & 8 deletions Cargo.lock

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

12 changes: 8 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
[workspace]
members = ["episkos_gui_backend", "episkos_lib", "episkos_cli"]
members = ["episko_gui_backend", "episko_lib", "episko_cli"]
resolver = "2"

[workspace.package]
version = "0.0.0-development"
license = "MIT"
version = "0.0.1-dev"
license = "GPL-3.0-or-later"
authors = ["Simon Blum", "Ben Oeckl", "Paul Stöckle", "Maximilian Rodler"]
edition = "2021"
description = "TBC: Project for University"
repository = "https://github.com/SoftwareEngineeringOne/episko"

[workspace.dependencies]
episkos_lib = { path = "episkos_lib" }
episko_lib = { path = "episko_lib", version = "0.0.1-dev" }
Loading
Loading