automated update: 2026-06-11 00:40:59
This commit is contained in:
@@ -15,8 +15,22 @@ env:
|
|||||||
IMAGE_NAME: sudolulo/if-curator-headless
|
IMAGE_NAME: sudolulo/if-curator-headless
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
verify-lockfile:
|
||||||
|
name: Verify uv.lock is current
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install uv
|
||||||
|
uses: astral-sh/setup-uv@v4
|
||||||
|
|
||||||
|
- name: Check lockfile is up to date
|
||||||
|
run: uv lock --check
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build (${{ matrix.platform }})
|
name: Build (${{ matrix.platform }})
|
||||||
|
needs: verify-lockfile
|
||||||
runs-on: ${{ matrix.runner }}
|
runs-on: ${{ matrix.runner }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|||||||
@@ -14,8 +14,22 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
verify-lockfile:
|
||||||
|
name: Verify uv.lock is current
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install uv
|
||||||
|
uses: astral-sh/setup-uv@v4
|
||||||
|
|
||||||
|
- name: Check lockfile is up to date
|
||||||
|
run: uv lock --check
|
||||||
|
|
||||||
release:
|
release:
|
||||||
name: Create GitHub Release & Build Image
|
name: Create GitHub Release & Build Image
|
||||||
|
needs: verify-lockfile
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@@ -56,7 +70,7 @@ jobs:
|
|||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch'
|
||||||
run: |
|
run: |
|
||||||
git config user.name "github-actions[bot]"
|
git config user.name "github-actions[bot]"
|
||||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
TAG="${{ steps.tag.outputs.TAG }}"
|
TAG="${{ steps.tag.outputs.TAG }}"
|
||||||
if git rev-parse "$TAG" >/dev/null 2>&1; then
|
if git rev-parse "$TAG" >/dev/null 2>&1; then
|
||||||
echo "Tag $TAG already exists, skipping creation."
|
echo "Tag $TAG already exists, skipping creation."
|
||||||
|
|||||||
Reference in New Issue
Block a user