From caf34874fc865e136e8761f0ac0b977f4ffb5d34 Mon Sep 17 00:00:00 2001 From: zver Date: Tue, 25 Jun 2024 00:45:29 +0100 Subject: [PATCH] feat: first commit --- .gitea/workflows/release-production.yaml | 25 ++++++++++++++++++++++++ .well-known/nostr.json | 16 +++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 .gitea/workflows/release-production.yaml create mode 100644 .well-known/nostr.json diff --git a/.gitea/workflows/release-production.yaml b/.gitea/workflows/release-production.yaml new file mode 100644 index 0000000..5053145 --- /dev/null +++ b/.gitea/workflows/release-production.yaml @@ -0,0 +1,25 @@ +name: Release to Production +on: + push: + branches: + - main + +jobs: + build_and_release: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node + uses: actions/setup-node@v2 + with: + node-version: 18 + + + - name: Release Build + run: | + npm -g install cloudron-surfer + surfer config --token ${{ secrets.CLOUDRON_SURFER_TOKEN }} --server pleb.church + surfer put .well-known / --all diff --git a/.well-known/nostr.json b/.well-known/nostr.json new file mode 100644 index 0000000..4d22f3e --- /dev/null +++ b/.well-known/nostr.json @@ -0,0 +1,16 @@ +{ + "names": { + "_": "d83b5ef189df7e884627294b752969547814c3cfe38995cf207c040e03bbe7a4", + "joe": "d83b5ef189df7e884627294b752969547814c3cfe38995cf207c040e03bbe7a4" + }, + "relays": { + "d83b5ef189df7e884627294b752969547814c3cfe38995cf207c040e03bbe7a4": [ + "wss://nostr.bitcoiner.social", + "wss://relay.nostr.bg", + "wss://nostr.orangepill.dev", + "wss://relay.damus.io", + "wss://nostr.oxtr.dev", + "wss://nos.lol" + ] + } +} \ No newline at end of file