Skip to content

Post to Bluesky

Post to Bluesky #7195

Workflow file for this run

name: "Post to Bluesky"
# on: workflow_dispatch
on:
workflow_dispatch:
schedule:
- cron: '18 * * * *'
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"
- run: npm ci
- run: npm run build
- name: Send post
run: npm start
env:
BSKY_HANDLE: ${{ secrets.BSKY_HANDLE }}
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }}