Dagger
Search

bluesky

Send posts to Bluesky from your Dagger Pipeleines

Installation

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
NameTypeDefault ValueDescription
emailString !-Bluesky account email
passwordSecret !-Bluesky password
textString !-Bluesky post message body
hostString !"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)
}