citadel-apps/.github/workflows/main.yml
2022-04-28 15:03:23 +00:00

31 lines
949 B
YAML

name: Check app updates
on:
push:
branches: [ v3-dev, c-lightning-v3 ]
workflow_dispatch:
schedule:
- cron: "0 * * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check for updates
run: |
export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
git clone https://github.com/runcitadel/dev-tools
cd dev-tools
yarn && yarn tsc
yarn citadel-dev --consumerkey ${{ secrets.TWITTER_CONSUMER_API_KEY }} --consumersecret ${{ secrets.TWITTER_CONSUMER_API_SECRET }} --accesstoken ${{ secrets.TWITTER_ACCESS_TOKEN }} --accesstokensecret ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} appcheck -d ../apps
cd ..
rm -rf dev-tools
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git commit -a -m "Update apps" || true
git push