Fetch Appstore Info #49657
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: Fetch Appstore Info | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0/15 * * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/[email protected] | |
with: | |
node-version: "14.x" | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.0.5" | |
- run: gem install bundler:2.1.4 | |
- run: bundle update | |
- run: npm install | |
- run: node Sources/check_status.js | |
env: | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
KEY_ID: ${{ secrets.KEY_ID }} | |
ISSUER_ID: ${{ secrets.ISSUER_ID }} | |
BUNDLE_ID: ${{ secrets.BUNDLE_ID }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIST_ID: ${{ secrets.GIST_ID }} | |
LANGUAGE: "ko" | |
- uses: gautamkrishnar/keepalive-workflow@v1 |