Commit abad806 1 parent 5315607 commit abad806 Copy full SHA for abad806
File tree 2 files changed +2
-2
lines changed
pyaction/action_template/{{action_slug}}
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ COPY . .
14
14
RUN [ -f pre-script.sh ] && sh pre-script.sh || true
15
15
16
16
# Install action dependencies
17
- RUN uv sync --no- install-project --no-cache
17
+ RUN uv pip install . --system
18
18
19
19
# running the post-script.sh
20
20
RUN [ -f post-script.sh ] && sh post-script.sh || true
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ COPY . .
14
14
RUN [ -f pre-script.sh ] && sh pre-script.sh || true
15
15
16
16
# Install project dependencies first for better caching
17
- RUN uv sync --no- install-project --no-cache
17
+ RUN uv pip install . --system
18
18
19
19
# Running the post-script.sh
20
20
RUN [ -f post-script.sh ] && sh post-script.sh || true
You can’t perform that action at this time.
0 commit comments