Skip to content

Update readme

Update readme #400

Workflow file for this run

name: Build lists
on:
workflow_dispatch:
workflow_call:
push:
paths:
- 'build.sh' # Update readme if changed in build.sh
permissions:
contents: write
jobs:
build-lists:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: build.sh
run: bash build.sh
- name: Push
run: |
git config user.email ${{ vars.GIT_EMAIL }}
git config user.name ${{ vars.GIT_USERNAME }}
git add .
git diff-index --quiet HEAD || git commit -m "Build lists"
git push -q