generate selected *.md files #207
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: generate selected *.md files | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '.github/workflows/gen_md_files.yml' | |
- '.github/scripts/gen_*.sh' | |
- '.github/markdown_templates/*' | |
schedule: | |
- cron: '20 12 * * *' | |
workflow_dispatch: | |
env: | |
SCRIPT01: .github/scripts/gen_blocklisten.md.sh | |
SCRIPT02: .github/scripts/gen_dnsmasq_readme.md.sh | |
SCRIPT03: .github/scripts/gen_mikrotik_readme.md.sh | |
jobs: | |
generate-and-deploy: | |
container: | |
image: ubuntu:24.04 | |
runs-on: ubuntu-latest | |
if: github.repository == 'RPiList/specials' | |
steps: | |
- name: key | |
id: key | |
run: | | |
export KEY="${GITHUB_WORKFLOW%-*}" | |
echo "key=$KEY" >> $GITHUB_OUTPUT | |
echo "################################################################" && bash -c "echo KEY=$KEY" | |
- name: update | |
run: apt-get -y update && apt-get -y upgrade && apt-get -y dist-upgrade | |
- name: install | |
run: | | |
DEBIAN_FRONTEND=noninteractive apt-get -y install \ | |
git locales | |
- name: locale | |
run: locale-gen en_US.utf8 && locale-gen de_DE.UTF-8 && update-locale | |
- name: clone | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global --add safe.directory $GITHUB_WORKSPACE | |
git clone https://github-actions:$GITHUB_TOKEN@${GITHUB_SERVER_URL##*/}/$GITHUB_REPOSITORY.git $GITHUB_WORKSPACE --branch $GITHUB_REF_NAME --single-branch | |
- name: generate | |
run: | | |
export LANG=en_US.utf8 | |
[ "${{ github.workflow }}" != "${{ steps.key.outputs.key }}" ] && c=5 || c=1 | |
seq $c | while read x; do echo run ${{ env.SCRIPT01 }} && chmod +x ${{ env.SCRIPT01 }} && ./${{ env.SCRIPT01 }}; done | |
seq $c | while read x; do echo run ${{ env.SCRIPT02 }} && chmod +x ${{ env.SCRIPT02 }} && ./${{ env.SCRIPT02 }}; done | |
seq $c | while read x; do echo run ${{ env.SCRIPT03 }} && chmod +x ${{ env.SCRIPT03 }} && ./${{ env.SCRIPT03 }}; done | |
- name: commit | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global --add safe.directory $GITHUB_WORKSPACE | |
git pull | |
git add . | |
git status | |
git config --local user.name github-actions | |
git config --local user.email github-actions@github.com | |
git diff --cached --quiet && exit 0 || git commit -m "Auto-Update" | |
git config --local credential.helper '!x() { echo "password=$GITHUB_TOKEN"; };x' | |
git push origin $GITHUB_REF_NAME | |