-
-
Notifications
You must be signed in to change notification settings - Fork 57
81 lines (78 loc) · 2.17 KB
/
build_master.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: build_canary
on:
push:
branches:
- 'master'
concurrency: canary
jobs:
phar:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: mbstring, intl, uuid
tools: box:4.6.2
-
name: Build blackfire-player.phar
run: |
composer install --no-interaction --prefer-dist
box compile -c box.json
-
name: Push blackfire-player.phar to S3
run: |
aws s3 cp blackfire-player.phar s3://get.blackfire.io/blackfire-player-latest.phar
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: 'eu-west-1'
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set COMPOSER_ROOT_VERSION environment variable
uses: "ergebnis/composer-root-version-action@main"
with:
branch: master
-
name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: blackfire/player
flavor: |
latest=false
tags: |
type=raw,value=canary
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/386,linux/arm64
build-args: |
BLACKFIRE_PLAYER_VERSION="${{ env.COMPOSER_ROOT_VERSION }}@${{ github.sha }}"
push: true
pull: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}