forked from Paymenter/Paymenter
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (47 loc) · 1.69 KB
/
beta.yaml
File metadata and controls
57 lines (47 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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: 22
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.3'
- name: Install dependencies
run: |
composer install -q --no-dev --optimize-autoloader --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 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: ./