mirror of
https://github.com/signcl/docsearch-scraper-action.git
synced 2024-11-10 09:39:12 +08:00
12 lines
294 B
Bash
Executable File
12 lines
294 B
Bash
Executable File
#!/bin/sh
|
|
# https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions
|
|
|
|
cd /root
|
|
|
|
ls -lah
|
|
ls -lah src
|
|
|
|
# `$*` expands the `args` supplied in an `array` individually
|
|
# or splits `args` in a string separated by whitespace.
|
|
sh -c "pipenv run python -m src.index $*"
|