docs: Add deprecation guides on data attributes and dom events #173
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: Deploy Develop | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 1 * * 0' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: montudor/action-zip@v1 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - run: npm install | |
| - run: npm install @coderline/alphatab@alpha | |
| - run: npm run generate-alphatabdoc | |
| - run: npm run build | |
| - run: cp web.config ./build | |
| - name: Package Zip | |
| run: zip -qq -r ./website.zip ./build | |
| - name: Push Zip To Server | |
| run: | | |
| curl --request POST \ | |
| --url https://docs.alphaTab.net/deploy-zip.php \ | |
| --header 'authorization: Bearer ${{ secrets.DEPLOY_TOKEN }}' \ | |
| --header 'branch: next' \ | |
| -F 'website=@./website.zip' \ | |
| --fail |