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
6 changes: 5 additions & 1 deletion .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Build Release

on: workflow_dispatch
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: write
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Build Docker

on: workflow_dispatch
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: write
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-wheels-cuda.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build Wheels (CUDA)

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
release_tag:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build-wheels-metal.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Build Wheels (Metal)

on: workflow_dispatch
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: write
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-wheels-rocm.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build Wheels (ROCm)

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
release_tag:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-wheels-vulkan.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build Wheels (Vulkan)

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
release_tag:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-index-from-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Wheels Index
on:
# Trigger on new release
workflow_run:
workflows: ["Release", "Build Wheels (CUDA)", "Build Wheels (Metal)", "Build Wheels (Vulkan)", "Build Wheels (ROCm)"]
workflows: ["Build Release", "Build Wheels (CUDA)", "Build Wheels (Metal)", "Build Wheels (Vulkan)", "Build Wheels (ROCm)"]
types:
- completed

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: Publish to PyPI

# Based on: https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/

on: workflow_dispatch
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

jobs:
build-n-publish:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- ci: run release workflows for version tags by @abetlen in #2339

## [0.3.34]

- feat: update llama.cpp to ggml-org/llama.cpp@e3546c794
Expand Down