Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/export.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5

- uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6
- run: uv sync # TODO: cache uv env (does setup-uv do that already automatically?)

- run: uv run immich_model_exporter export "${{ inputs.model-name }}" "${{ inputs.model-source }}" --hf-model-name "${{ inputs.hf-name }}"
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5

- uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6
- run: uv sync # TODO: cache uv env (does setup-uv do that already automatically?)

- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:
path: before
ref: ${{ steps.ref.outputs.previous-ref }}
- id: new-models
uses: mikefarah/yq@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.2
with:
cmd: yq eval '.models' -o=json -I=0 ./models.yaml
- id: old-models
uses: mikefarah/yq@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.2
with:
cmd: yq eval '.models' -o=json -I=0 ./before/models.yaml
- id: scope
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
with:
# Editor checks warn on these being "undefined", but they get passed to the script regardless.
force: ${{ inputs.force || 'false' }}
Expand Down
Loading