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
11 changes: 6 additions & 5 deletions .github/workflows/library-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish c2pa-library binaries
on:
push:
tags:
- 'c2pa-v*' # Trigger on version tags (e.g., v1.0.0)
- "c2pa-v*" # Trigger on version tags (e.g., v1.0.0)
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -47,10 +47,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v5

- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Build Windows release
if: matrix.os == 'windows-latest'
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/tier-1a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ jobs:
uses: actions/checkout@v5

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
uses: dtolnay/rust-toolchain@stable

- name: Get all features
id: get-features
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tier-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5

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

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Build C library for mobile target
run: make release TARGET=${{ matrix.target }}
Expand Down
Loading