Skip to content
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ on:
schedule:
- cron: '30 4 * * *'
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name for release'
required: false
default: nightly

jobs:
Linux:
Expand All @@ -27,7 +22,9 @@ jobs:
permissions:
id-token: write # For sigstore
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: Install dependencies
run: |
Expand Down Expand Up @@ -77,22 +74,22 @@ jobs:
permissions:
id-token: write # For sigstore
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: Install dependencies
run: |
brew install inih tree doxygen graphviz

- name: Build packaged release
run: |
mkdir build
cmake -GNinja -S . -B build \
-DEXIV2_TEAM_PACKAGING=ON \
-DBUILD_SHARED_LIBS=ON \
-DEXIV2_ENABLE_WEBREADY=OFF \
-DEXIV2_ENABLE_NLS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DEXIV2_ENABLE_BMFF=ON \
-DEXIV2_TEAM_WARNINGS_AS_ERRORS=ON \
-DEXIV2_BUILD_DOC=ON \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON
Expand Down Expand Up @@ -122,7 +119,9 @@ jobs:
permissions:
id-token: write # For sigstore
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: Set up Visual Studio shell
uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -133,10 +132,11 @@ jobs:
choco install graphviz

- name: Restore conan cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{github.workspace}}/conanCache
key: ${{runner.os}}-release-win-${{ hashFiles('conanfile.py') }}
lookup-only: true

- name: Install Conan & Common config
run: |
Expand Down
Loading