Removed Monetag #41
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: Update Ad-Free branch | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
update-Ad-Free: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout main branch | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
- name: Create or update Ad-Free branch | ||
run: | | ||
git fetch origin | ||
if git branch --list | grep -q 'Ad-Free'; then | ||
git checkout Ad-Free | ||
git pull origin Ad-Free | ||
git merge main --no-edit | ||
else | ||
git checkout -b Ad-Free | ||
fi | ||
- name: Remove specific JS code from main.js | ||
run: | | ||
sed -i '/document\.addEventListener("DOMContentLoaded", () => {/,/document\.body\.appendChild(script);/d' static/assets/js/main.js | ||
- name: Commit changes | ||
env: | ||
GIT_USERNAME: ${{ secrets.GIT_USERNAME }} | ||
GIT_EMAIL: ${{ secrets.GIT_EMAIL }} | ||
run: | | ||
git config --global user.name "${GIT_USERNAME}" | ||
git config --global user.email "${GIT_EMAIL}" | ||
git add static/assets/js/main.js | ||
git commit -m "Remove specific JS code from main.js" | ||
- name: Push changes to Ad-Free branch | ||
run: | | ||
git push origin Ad-Free --force |