SSR-3278: Log error message #2
Workflow file for this run
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: Perform traffic logs | |
on: | |
push: | |
jobs: | |
check: | |
name: Run traffic logs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Generate app token | |
uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app_id: ${{secrets.TRAFFIC_LOGS_APP_ID}} | |
private_key: ${{ secrets.TRAFFIC_LOGS_APP_PRIVATE_KEY }} | |
- name: Update config file | |
run: | | |
sed -i 's|<kintone-app-id>|${{secrets.TRAFFIC_LOGS_KINTONE_APP_ID}}|' config.json | |
sed -i 's|<domain>|${{secrets.TRAFFIC_LOGS_KINTONE_APP_DOMAIN}}|' config.json | |
sed -i 's|<kintone-app-token>|${{secrets.TRAFFIC_LOGS_KINTONE_APP_API_TOKEN}}|' config.json | |
working-directory: traffic-logs | |
- name: Perform traffic logs with app token | |
env: | |
GITHUB_APP_TOKEN: ${{ steps.app-token.outputs.token }} | |
run: | | |
node traffic-logs-kintone-cli.min.js --config ./config.json | |
cat ./log/system_20231214.log | |
working-directory: traffic-logs |