Fix password confirmation for sensitive admin settings #2
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: Build and Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install PHP dependencies | |
| run: composer install --no-dev --optimize-autoloader | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Build frontend | |
| run: npm run build | |
| - name: Package app | |
| run: make appstore | |
| - name: Upload release artifact | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: /tmp/build/integration_basecamp.tar.gz |