Get App Store Info #20973
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: Get App Store Info | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0/15 * * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: "20.x" | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
- run: gem install bundler:2.5.5 | |
- run: bundle install | |
- run: npm install | |
- run: node src/check_status.js | |
env: | |
APP_STORE_PRIVATE_KEY: ${{ secrets.APP_STORE_PRIVATE_KEY }} | |
APP_STORE_KEY_ID: ${{ secrets.APP_STORE_KEY_ID }} | |
APP_STORE_ISSUER_ID: ${{ secrets.APP_STORE_ISSUER_ID }} | |
APP_STORE_BUNDLE_IDS: ${{ secrets.APP_STORE_BUNDLE_IDS }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_GIST_ID: ${{ secrets.GH_GIST_ID }} |