From 656cdf07424f3247e29bc854352978bf12d2668e Mon Sep 17 00:00:00 2001 From: "Dr. Jan Philip Bernius" Date: Fri, 19 Jan 2024 22:40:54 +0100 Subject: [PATCH] feat: mastodon webfinger --- .github/workflows/man.yaml | 5 +++++ .gitignore | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/man.yaml b/.github/workflows/man.yaml index 900a3b1..f995ee9 100644 --- a/.github/workflows/man.yaml +++ b/.github/workflows/man.yaml @@ -37,6 +37,11 @@ jobs: mkdir -p out mv README.1.html out/index.html + - name: Mastodon Webfinger + run: | + mkdir -p out/.well-known + curl -o out/.well-known/webfinger "https://hachyderm.io/.well-known/webfinger?resource=acct:jpbernius@hachyderm.io" + - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: diff --git a/.gitignore b/.gitignore index 114c660..80968d1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -README.1.html \ No newline at end of file +README.1.html +out/ \ No newline at end of file