Skip to content

Post to Bluesky

Post to Bluesky #1226

Workflow file for this run

name: "Post to Bluesky"
on:
workflow_dispatch:
schedule:
- cron: "0 1,4,7,13 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Send post
run: npm start
env:
BSKY_HANDLE: ${{ secrets.BSKY_HANDLE }}
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}