mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
Additional updates to LnProxy support (#609)
* Fetch relay list from official lnproxy repo My changes have been merged on the lnproxy.org repo, so RoboSats must not fetch from my fork of lnproxy anymore. * Grant workflow job write perms By default, the GITHUB_TOKEN only has read permissions. Write is required in order to update the list of relays. * Update to latest version of checkout action --------- Co-authored-by: +shyfire131 <shyfire131@shyfire131.net>
This commit is contained in:
parent
cdc5f3deef
commit
5d2339bfcf
11
.github/workflows/lnproxy-sync.yml
vendored
11
.github/workflows/lnproxy-sync.yml
vendored
@ -3,19 +3,22 @@ name: Sync lnproxy relays
|
||||
on:
|
||||
schedule:
|
||||
# * is a special character in YAML so you have to quote this string
|
||||
- cron: '0 12 * * 0' # Run every Sunday at noon
|
||||
- cron: "0 12 * * 0" # Run every Sunday at noon
|
||||
|
||||
jobs:
|
||||
sync:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Fetch and process JSON
|
||||
run: |
|
||||
curl https://raw.githubusercontent.com/shyfire131/lnproxy-webui2/17d6131a72a92978e5c0dc57ab2b2fbe467c7722/assets/relays.json -o lnproxy_tmplist.json
|
||||
curl https://raw.githubusercontent.com/lnproxy/lnproxy-webui2/main/assets/relays.json -o lnproxy_tmplist.json
|
||||
node .github/workflows/scripts/lnproxy-sync.js
|
||||
|
||||
- name: Commit and push if it's not up to date
|
||||
@ -27,4 +30,4 @@ jobs:
|
||||
git push
|
||||
|
||||
- name: Remove tmp lnproxy json file
|
||||
run: rm lnproxy_tmplist.json
|
||||
run: rm lnproxy_tmplist.json
|
||||
|
Loading…
Reference in New Issue
Block a user