filters-maker/filters.sh

28 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
2021-07-31 17:27:16 +00:00
git clone https://github.com/minoplhy/filters-maker /filters-maker
2021-08-01 03:59:58 +00:00
git clone https://x-access-token:$API_TOKEN_GITHUB@github.com/$INPUT_DESTINATION_UNAME/$INPUT_DESTINATION_REPO.git /repros
2021-08-27 05:34:04 +00:00
mkdir /reprwiki
2021-08-07 02:40:54 +00:00
mkdir /reprwiki/$INPUT_DESTINATION_FOLDER/
2021-08-07 02:38:14 +00:00
mkdir /reprwiki/$INPUT_DESTINATION_FOLDER/$INPUT_DESTINATION_VERSION
2021-08-01 03:25:54 +00:00
pip3 install -r /filters-maker/requirements.txt
2021-08-07 02:35:04 +00:00
cd /reprwiki
2021-08-02 14:12:45 +00:00
python3 /repros/$INPUT_ACTION_FILE
2021-08-17 07:14:06 +00:00
cd /repros
2021-08-27 06:21:03 +00:00
TIMEDATE=`date`
2021-08-17 07:14:06 +00:00
git config --local user.name $INPUT_GIT_NAME
git config --local user.email $INPUT_GIT_EMAIL
git add .
2021-08-22 02:36:45 +00:00
git commit -m "Schedule Building : $TIMEDATE"
2021-08-21 06:51:55 +00:00
git push -u origin $INPUT_BRANCH_VERSION
2021-08-21 15:57:28 +00:00
if [ -f "/repros/$INPUT_SUB_ACTION_LOCATION" ]; then
echo $API_TOKEN_GITHUB > token.txt
gh auth login --with-token < token.txt
rm token.txt
python3 /repros/$INPUT_SUB_ACTION_LOCATION
2021-08-21 07:28:45 +00:00
echo "Code Completed!"
2021-08-27 06:05:17 +00:00
gh release delete latest -y
2021-08-27 06:40:02 +00:00
git tag -d latest
git push origin :latest
2021-08-22 02:58:32 +00:00
gh release create latest -F /repros/Resources/Releases.md /gh-releases/* -t "FILTERS IN RELEASES"
2021-08-21 06:51:55 +00:00
fi