-
Notifications
You must be signed in to change notification settings - Fork 9
43 lines (40 loc) · 1.36 KB
/
build.yml
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
name: Build
on: push
jobs:
build:
name: Phar building
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, '[Build]')"
steps:
- name: Startup
uses: actions/checkout@v3
- name: Download PHP Release
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
file: PHP-Linux-x86_64-PM5.tar.gz
repo: NetherGamesMC/php-build-scripts
version: "tags/php-8.3-latest"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Unpack PHP Release
run: tar -xzvf PHP-Linux-x86_64-PM5.tar.gz
- name: Download Composer
run: curl -o ./bin/composer.phar "https://getcomposer.org/composer-stable.phar"
- name: Install Composer dependencies
run: ./bin/php7/bin/php ./bin/composer.phar install --prefer-dist --no-interaction --no-dev
- name: Download pharbuilder-rs
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
file: pharbuilder
repo: NetherGamesMC/pharbuilder-rs
token: ${{ secrets.ng_token }}
- name: Build
run: |
echo Building...
chmod +x pharbuilder
./pharbuilder -i . -o ./ProxyTransport.phar
echo Build completed!
- name: Upload
uses: actions/upload-artifact@v3
with:
name: ProxyTransport
path: ProxyTransport.phar