bluesky
Send posts to Bluesky from your Dagger PipelinesInstallation
dagger install github.com/levlaz/daggerverse/bluesky@v0.1.1Entrypoint
Return Type
Bluesky !Example
dagger -m github.com/levlaz/daggerverse/bluesky@4a3278a6982a2a82e92435973fadb235d96ffc8f 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
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
dagger -m github.com/levlaz/daggerverse/bluesky@4a3278a6982a2a82e92435973fadb235d96ffc8f call \
 post --email string --password env:MYSECRET --text string --host stringfunc (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)
}