bluesky
Send posts to Bluesky from your Dagger pipelines. Can connect to any Bluesky instance but defaults to the public instance at https://bsky.social.Installation
dagger install github.com/levlaz/daggerverse/bluesky@v0.4.1
Entrypoint
Return Type
Bluesky
Example
dagger -m github.com/levlaz/daggerverse/bluesky@1c0aa0d2e13a083efab30a64596f7485b42bd1d8 call \
func (m *MyModule) Example() *dagger.Bluesky {
return dag.
Bluesky()
}
@function
def example() -> dagger.Bluesky:
return (
dag.bluesky()
)
@func()
example(): Bluesky {
return dag
.bluesky()
}
Types
Bluesky 🔗
post() 🔗
Send post to Bluesky, if longer than 300 characters, it will be chunked into multiple posts.
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
String ! | - | No description provided | |
password | Secret ! | - | No description provided |
text | String ! | - | No description provided |
host | String ! | "https://bsky.social" | No description provided |
Example
dagger -m github.com/levlaz/daggerverse/bluesky@1c0aa0d2e13a083efab30a64596f7485b42bd1d8 call \
post --email string --password env:MYSECRET --text string --host string
func (m *MyModule) Example(ctx context.Context, email string, password *dagger.Secret, text string, host string) string {
return dag.
Bluesky().
Post(ctx, email, password, text, host)
}
@function
async def example(email: str, password: dagger.Secret, text: str, host: str) -> str:
return await (
dag.bluesky()
.post(email, password, text, host)
)
@func()
async example(email: string, password: Secret, text: string, host: string): Promise<string> {
return dag
.bluesky()
.post(email, password, text, host)
}