Update LIBRE.html #28
This file contains hidden or 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: Fix TOML Images | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| replace: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Replace all image URLs with LIBRE_PNG.jpg | |
| run: | | |
| sed -i 's|image=.*|image="https://github.com/LibreXLM/librexlm.github.io/blob/f3bdf18dbae1109a2d40604db6ca44fb667b6eb3/LIBRE_PNG.jpg"|' .well-known/stellar.toml | |
| - name: Commit changes | |
| run: | | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| git add .well-known/stellar.toml | |
| git commit -m "fix: unify images to LIBRE_PNG.jpg" || echo "No changes" | |
| git push |