File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,22 +18,21 @@ jobs:
1818 with :
1919 python-version : " 3.10"
2020
21- - name : Install dependencies
21+ - name : Install dependencies and package
2222 run : |
2323 python -m pip install --upgrade pip
24- pip install hatch
24+ pip install -e .
2525
2626 - name : Run --help command
27- run : hatch run cli --help
27+ run : fetchbin --help
2828
2929 - name : Run --version command
30- run : hatch run cli --version
30+ run : fetchbin --version
3131
3232 - name : Share output and extract delete token
3333 id : share
3434 run : |
35- export FETCHBIN_API_URL=https://fetchbin.beucismis.org
36- output=$(hatch run cli share -s uname -a)
35+ output=$(fetchbin share -s uname -a)
3736 echo "$output"
3837 delete_url=$(echo "$output" | grep 'Delete URL' | awk '{print $3}')
3938
5554 fi
5655
5756 echo "Attempting to delete with token: $token"
58- export FETCHBIN_API_URL=https://fetchbin.beucismis.org
59- hatch run cli delete "$token"
57+ fetchbin delete "$token"
You can’t perform that action at this time.
0 commit comments