Merge branch 'bot-update-deps-php' into 'main' #49
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
tags: | |
- 'v*' | |
concurrency: prod | |
jobs: | |
phar: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Get version tag | |
id: git_tag | |
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV" | |
- | |
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: Write player version in blackfire-player.version | |
run: echo ${{env.VERSION}} >> blackfire-player.version | |
- | |
name: Push blackfire-player.phar to S3 | |
run: | | |
aws s3 cp blackfire-player.version s3://get.blackfire.io/blackfire-player.version | |
aws s3 cp blackfire-player.phar s3://get.blackfire.io/blackfire-player-${{ env.VERSION }}.phar | |
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: Get version tag | |
id: git_tag | |
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_ENV" | |
- | |
name: Docker meta | |
id: docker_meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: blackfire/player | |
flavor: | | |
latest=true | |
tags: | | |
type=semver,pattern={{major}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{version}} | |
- | |
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.VERSION }} | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
labels: ${{ steps.docker_meta.outputs.labels }} |