Skip to content

Update rewards.html #30

Update rewards.html

Update rewards.html #30

Workflow file for this run

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