We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f62cb commit b51213fCopy full SHA for b51213f
1 file changed
.github/workflows/publish-to-test-pypi.yml
@@ -11,9 +11,6 @@ on:
11
required: true
12
type: string
13
14
- schedule:
15
- - cron: "0 0 * * *" # Run every day at midnight
16
-
17
jobs:
18
build:
19
name: Build distribution 📦
@@ -26,12 +23,6 @@ jobs:
26
23
- name: Get date
27
24
id: date
28
25
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
29
- - name: Update version for nightly
30
- if: github.event_name == 'schedule'
31
- run: |
32
- # Version is in pyproject.toml
33
- sed -i 's/version = "\([^"]*\)"/version = "\1.dev${{ steps.date.outputs.date }}"/' pyproject.toml
34
- sed -i 's/__version__ = "\([^"]*\)"/__version__ = "\1.dev${{ steps.date.outputs.date }}"/' src/llama_stack_client/_version.py
35
- name: Update version for manual RC
36
if: github.event_name == 'workflow_dispatch'
37
run: |
0 commit comments