Skip to content

Merge pull request #288 from JosephBARBIERDARNAL/rm-deprec-arg #141

Merge pull request #288 from JosephBARBIERDARNAL/rm-deprec-arg

Merge pull request #288 from JosephBARBIERDARNAL/rm-deprec-arg #141

Workflow file for this run

name: 'Update Ads.txt file'

Check failure on line 2 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
on:
schedule:
- cron: "0 0 * * *"
# on:
# push:
# branches:
# - '*'
jobs:
update-ads-txt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Fetch ads.txt content
run: |
curl -L https://ads.adthrive.com/sites/6434366c7ccf1c58d32ab68f/ads.txt > static/fetched_ads.txt
if [ $? -eq 0 ]; then
echo "ads.txt fetched successfully."
else
echo "Failed to fetch ads.txt."
exit 1
fi
- name: Compare fetched file with existing ads.txt
id: compare-files
run: |
if cmp -s static/fetched_ads.txt static/ads.txt; then
echo "No changes in ads.txt."
echo "::set-output name=changes::false"
else
echo "ads.txt has changed."
mv static/fetched_ads.txt static/ads.txt
echo "::set-output name=changes::false"
fi
- name: Commit and push changes
if: steps.compare-files.outputs.changes == 'true'
run: |
git config user.name github-actions
git config user.email [email protected]
git add static/ads.txt
git commit -m "Update ads.txt"
git push