Skip to content
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/gh-aw-fragments/runtime-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,19 @@ steps:
- name: Setup uv
if: hashFiles('pyproject.toml', 'uv.lock') != ''
uses: astral-sh/setup-uv@v5
id: setup-uv

- name: Expose uv in workspace
if: hashFiles('pyproject.toml', 'uv.lock') != ''
shell: bash
env:
UV_PATH: ${{ steps.setup-uv.outputs.uv-path }}
WORKSPACE: ${{ github.workspace }}
run: |
set -euo pipefail
install_dir="$WORKSPACE/.gh-aw-tools/bin"
mkdir -p "$install_dir"
cp "$UV_PATH" "$install_dir/uv"
chmod +x "$install_dir/uv"
echo "$install_dir" >> "$GITHUB_PATH"
---
112 changes: 0 additions & 112 deletions github/workflows/gh-aw-release-update.md

This file was deleted.

Loading
Loading