3 Commits
Author SHA1 Message Date
nicknase27 1789e7b552 Cache Cargo dependencies
Build / build (push) Successful in 3m48s
2026-07-26 11:40:39 +02:00
nicknase27 ff6bc6ab4c workflow fix?
Build / build (push) Successful in 2m56s
2026-07-26 11:25:16 +02:00
nicknase27 68bc9f6a8a readme
Build / build (push) Failing after 15s
2026-07-26 11:23:08 +02:00
2 changed files with 12 additions and 2 deletions
+12 -2
View File
@@ -18,6 +18,16 @@ jobs:
x86_64-unknown-linux-gnu x86_64-unknown-linux-gnu
x86_64-pc-windows-gnu x86_64-pc-windows-gnu
- uses: https://gitea.com/actions/cache@v6
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-${{ runner.os }}-
- name: Install dependencies - name: Install dependencies
run: | run: |
apt-get update apt-get update
@@ -40,8 +50,8 @@ jobs:
cp target/x86_64-unknown-linux-gnu/release/ncmprs artifacts/ncmprs cp target/x86_64-unknown-linux-gnu/release/ncmprs artifacts/ncmprs
cp target/x86_64-pc-windows-gnu/release/ncmprs.exe artifacts/ncmprs.exe cp target/x86_64-pc-windows-gnu/release/ncmprs.exe artifacts/ncmprs.exe
- name: Upload Release - name: Create Release
uses: https://gitea.com/actions/release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
files: | files: |
artifacts/ncmprs artifacts/ncmprs
View File