Enhance ICF service renaming logic to support case sensitivity in XML… #7
Workflow file for this run
This file contains hidden or 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: playground.abaplint.org | |
| on: [push, pull_request] | |
| jobs: | |
| playground: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - name: npm run install | |
| run: npm run install | |
| - name: npm test | |
| run: npm test | |
| - name: npm run web.playground | |
| run: npm run web.playground | |
| - name: Dump GitHub context | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: echo "$GITHUB_CONTEXT" | |
| - name: deploy playground.abaplint.org | |
| uses: peaceiris/actions-gh-pages@v3 | |
| if: github.ref == 'refs/heads/main' && github.repository == 'abaplint/abaplint' | |
| with: | |
| deploy_key: ${{ secrets.PLAYGROUND_DEPLOY_KEY }} | |
| external_repository: abaplint/playground.abaplint.org | |
| user_name: 'github-actions[bot]' | |
| user_email: 'github-actions[bot]@users.noreply.github.com' | |
| publish_branch: main | |
| cname: playground.abaplint.org | |
| force_orphan: true | |
| publish_dir: ./web/playground/build |