Merge branch 'master' of https://github.com/Paymenter/Paymenter #3
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: Beta Build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e | |
| with: | |
| php-version: '8.3' | |
| - name: Install dependencies | |
| run: | | |
| composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
| npm i | |
| - name: Build | |
| run: npm run build | |
| - name: Create release branch and bump version | |
| run: sed -i "s/ 'version' => 'development',/ 'version' => 'beta',/" config/app.php | |
| - name: Add commit sha to app.php | |
| run: sed -i "s/ 'commit' => '',/ 'commit' => '${{ github.sha }}',/" config/app.php | |
| - name: Create beta archive | |
| run: | | |
| rm -rf node_modules vendor tests CODE_OF_CONDUCT.md CONTRIBUTING.md flake.lock flake.nix phpstan.neon phpunit.xml shell.nix | |
| tar -czf paymenter.tar.gz * .env.example .gitignore | |
| - name: Move file to seperate directory for r2 upload | |
| run: | | |
| mkdir -p r2_upload | |
| cp paymenter.tar.gz r2_upload/ | |
| # Upload artifact | |
| - name: Upload archive | |
| uses: ryand56/r2-upload-action@latest | |
| with: | |
| r2-account-id: ${{ secrets.CF_R2_ACCOUNT_ID }} | |
| r2-access-key-id: ${{ secrets.CF_R2_KEY_ID }} | |
| r2-secret-access-key: ${{ secrets.CF_R2_KEY_ACCESS }} | |
| r2-bucket: paymenter-api | |
| source-dir: r2_upload | |
| destination-dir: ./ |