NoAds eXperimental #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NoAds eXperimental | |
on: | |
push: | |
paths: | |
- 'contrib/xfiles_*' | |
workflow_dispatch: | |
jobs: | |
noads_experimental: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Europe/Rome" | |
- name: Set date and time | |
run: sh ./sh/datetime.sh | |
- name: Prepare list header | |
run: | | |
echo "[Adblock Plus 2.8]" > experimental.txt | |
echo "! Version:" $update >> experimental.txt | |
echo "! Title: ABP eXperimental Files: the unstable list" >> experimental.txt | |
echo "! Fork sperimentale di X Files, si consiglia di usare la lista Stable!" >> experimental.txt | |
echo "! Last modified:" $lastmodified >> experimental.txt | |
echo "! Expires: 8 hours" >> experimental.txt | |
echo "! Homepage: https://xfiles.noads.it" >> experimental.txt | |
echo "! Home: https://xfiles.noads.it" >> experimental.txt | |
echo "! Blog: https://go.gioxx.org/noads" >> experimental.txt | |
echo "! Hosting: GitHub.com" >> experimental.txt | |
echo "!" >> experimental.txt | |
- name: Make eXperimental | |
run: sh ./sh/make_experimental.sh | |
- name: Prepare vCheck | |
run: | | |
num_of_lines=$(grep -v '^! ' "experimental.txt" | wc -l) | |
# num_of_lines=$(< "experimental.txt" wc -l) | |
# num_of_lines="$((num_of_lines - 24))" | |
md5=($(md5sum experimental.txt| cut -d ' ' -f 1)) | |
echo $update > vcheck/check_experimental.txt | |
echo $lastmodified >> vcheck/check_experimental.txt | |
echo $checkwebsite >> vcheck/check_experimental.txt | |
echo $num_of_lines >> vcheck/check_experimental.txt | |
echo $md5 >> vcheck/check_experimental.txt | |
- name: Run CommitsWithinTime script | |
uses: AlexHolderDeveloper/[email protected] | |
id: commitswithintime | |
- name: Get the output from CommitsWithinTime | |
run: | | |
echo ${{ steps.commitswithintime.outputs.total-commits }} > vcheck/check_gh.txt | |
- name: Commit eXperimental | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GWall[bot]" | |
git add experimental.txt | |
git add vcheck/check_experimental.txt | |
git add vcheck/check_gh.txt | |
git add contrib/xfiles_22-bpc | |
git commit -m "Experimental $update del $lastmodified" -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |