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
2 changes: 2 additions & 0 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ env:
jobs:
build-exe:
runs-on: ubuntu-latest
timeout-minutes: 15
outputs:
cli-win-artifact: PhotoManager-CLI-win-x64-${{ inputs.version }}
cli-linux-artifact: PhotoManager-CLI-linux-x64-${{ inputs.version }}
Expand Down Expand Up @@ -138,6 +139,7 @@ jobs:
pack-nuget:
if: inputs.release-kind == 'release'
runs-on: ubuntu-latest
timeout-minutes: 15
outputs:
artifact-name: PhotoManagerCore-nupkg-${{ inputs.version }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
screenshots:
name: README screenshots
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
screenshots:
name: refresh README screenshots
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ env:
jobs:
meta:
runs-on: ubuntu-latest
timeout-minutes: 15
outputs:
date: ${{ steps.m.outputs.date }}
version: ${{ steps.m.outputs.version }}
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:
publish:
needs: [meta, build]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -98,6 +100,7 @@ jobs:
prune:
needs: publish
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
version:
needs: test
runs-on: ubuntu-latest
timeout-minutes: 15
outputs:
version: ${{ steps.v.outputs.version }}
steps:
Expand All @@ -46,6 +47,7 @@ jobs:
# is a release in name only. Without this a rejected push still produced a green GitHub release.
needs: [version, build, publish-nuget]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -92,6 +94,7 @@ jobs:
publish-nuget:
needs: [version, build]
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
# Lets the job mint the short-lived OIDC token that nuget.org's Trusted Publishing exchanges
Expand Down
Loading