Fix formatting and update version header in CHANGELOG #168
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: Build Trevor UI (for low resources platforms) | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Prepare Trevor-UI | |
| run: | | |
| (cd trevor && yarn install && yarn build) | |
| bash ./prepare-trevor-ui.bash | |
| tar cvzf trevor-ui.tar.gz trevor-ui | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: trevor-ui | |
| path: trevor-ui.tar.gz |