bluesky
Send posts to Bluesky from your Dagger PipeleinesInstallation
dagger install github.com/levlaz/daggerverse/bluesky@v0.1.0
Entrypoint
Return Type
Bluesky !
Example
func (m *myModule) example() *Bluesky {
return dag.
Bluesky()
}
Types
Bluesky 🔗
post() 🔗
Send post to Bluesky
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
String ! | - | Bluesky account email | |
password | Secret ! | - | Bluesky password |
text | String ! | - | Bluesky post message body |
host | String ! | "https://bsky.social" | Bluesky server url |
Example
func (m *myModule) example(ctx context.Context, email string, password *Secret, text string, host string) string {
return dag.
Bluesky().
Post(ctx, email, password, text, host)
}