forked from opendatahub-io/notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 789 Bytes
/
Copy pathdocs.yaml
File metadata and controls
34 lines (29 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
"name": "Docs (release notes)"
"on":
"push":
"pull_request":
"workflow_dispatch":
permissions:
contents: read
env:
poetry_version: '1.8.3'
jobs:
generate-releasenotes:
name: Generate list of images for release notes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
# https://github.com/astral-sh/setup-uv
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
python-version: "3.12"
enable-cache: true
cache-dependency-glob: "uv.lock"
pyproject-file: "pyproject.toml"
- name: Run the release notes script
run: |
set -Eeuxo pipefail
uv run ci/package_versions.py | tee ${GITHUB_STEP_SUMMARY}