Skip to content

Commit

Permalink
feat: publish nostr
Browse files Browse the repository at this point in the history
  • Loading branch information
okjodom committed Nov 20, 2024
1 parent 3c5f3ec commit 2e516a9
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/publish-nostr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: publish-nostr

on:
push:
paths:
- apps/nostr/**
- libs/**
- package.json
- bun.lockb
- .github/workflows/publish-nostr.yml
workflow_dispatch:

jobs:
testing:
uses: ./.github/workflows/wait-for-tests.yml
with:
test-job-name: test

docker:
needs: testing
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
bitsacco/nostr
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Login to Docker Hub
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
uses: docker/login-action@v2
with:
username: okjodom
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push nostr
uses: docker/build-push-action@v4
with:
file: apps/nostr/Dockerfile
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Checkout repository content
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
uses: actions/checkout@v4

# This workflow requires the repository content to be locally available to read the README
- name: Update the Docker Hub description
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
uses: peter-evans/dockerhub-description@v3
with:
username: okjodom
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: bitsacco/nostr
readme-filepath: ./apps/nostr/README.md
17 changes: 17 additions & 0 deletions apps/nostr/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# apps/nostr

This app is a gRPC microservice for simple nostr operations with Bitsacco

## Dev

Run `bun dev nostr` to launch the microservice in development mode.
Run `bun start` to launch this plus any other microservice and the REST api gateway in dev mode

## Docs

- See [nostr.proto](https://github.com/bitsacco/os/blob/main/proto/nostr.proto)
- With the microservice running, see supported gRPC methods with type reflection at http://localhost:4050

## Architecture

See [architecture.md](https://github.com/bitsacco/os/blob/main/docs/architecture.md)

0 comments on commit 2e516a9

Please sign in to comment.