Skip to content

Appalachian Trail #1479

Appalachian Trail

Appalachian Trail #1479

Workflow file for this run

name: Appalachian Trail
on:
schedule:
- cron: '0 12,16 * * *'
workflow_dispatch:
jobs:
tweet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Node it
uses: actions/setup-node@v2
with:
cache: 'npm'
ref: ${{ github.head_ref }}
- name: Install it
run: npm install
- name: Build it
run: npm run build
- name: Config it
run: |
echo TWITTER_APP_KEY_at=${{ secrets.TWITTER_APP_KEY_AT }} > .env
echo TWITTER_APP_SECRET_at=${{ secrets.TWITTER_APP_SECRET_AT }} >> .env
echo TWITTER_ACCESS_TOKEN_at=${{ secrets.TWITTER_ACCESS_TOKEN_AT }} >> .env
echo TWITTER_ACCESS_SECRET_at=${{ secrets.TWITTER_ACCESS_SECRET_AT }} >> .env
- name: Tweet it
run: npx ts-node src/scripts/tweet_a_mile.ts at
- name: Commit it
run: |
git config --global user.name 'Jason Sanford'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git commit -am "Tweeted Appalachian Trail"
git push