mirror of
https://github.com/runcitadel/apps.git
synced 2024-11-14 09:50:22 +00:00
8a7192be12
This reverts commit 2a7d46f50f
.
35 lines
1022 B
YAML
35 lines
1022 B
YAML
name: Check app updates
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, v2 ]
|
|
pull_request:
|
|
branches: [ main, v2 ]
|
|
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Check for updates
|
|
run: |
|
|
./update.py
|
|
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
|
|
./update.py
|
|
git config --global user.name "GitHub Actions"
|
|
git config --global user.email "actions@github.com"
|
|
git commit -a -m "Update apps" || true
|
|
git push
|