chore: Upgrade phpdesktop #45
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
on: | |
push: | |
branches: | |
- master | |
- v1.x | |
name: Build | |
jobs: | |
phpdesktop: | |
name: build phpdesktop | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
- name: setup yarn | |
run: | | |
curl -o- -L https://yarnpkg.com/install.sh | sudo bash | |
yarn install | |
- name: do application build | |
run: make phpdesktop | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: VDOLog-PHPDesktop | |
path: build |