Top Resources tweet #145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Top Resources tweet | |
on: | |
schedule: | |
- cron: "0 15 * * 6" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Tweet most popular resources | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run Twitter bot | |
run: yarn twitter:top | |
env: | |
PLAUSIBLE_API_KEY: ${{ secrets.PLAUSIBLE_API_KEY }} | |
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }} | |
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }} | |
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} |