Skip to content

Build binary for linux x86_64 #4

Build binary for linux x86_64

Build binary for linux x86_64 #4

name: Build binary for linux x86_64
on:
release:
types: [ created ]
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BINARY_NAME: 'svgtinyps-linux-x86_64'
COMPILE_PHP_VERSION: "8.3"
COMPILE_EXTENSIONS: 'phar,dom'
jobs:
build-linux-binary:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Cache build dependencies
uses: actions/cache@v3
with:
path: build/
key: build-deps-php-${{ env.COMPILE_PHP_VERSION }}-${{ runner.os }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.COMPILE_PHP_VERSION }}
tools: composer:v2
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Composer install
run: composer install --prefer-dist --no-progress --optimize-autoloader
- name: Build Binary
run: ./build-ci-linux.sh --name "${{ env.BINARY_NAME }}"
- if: ${{ github.event_name == 'workflow_dispatch' }}
name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: ${{ env.BINARY_NAME }}
path: build/bin/${{ env.BINARY_NAME }}
- if: ${{ github.event_name != 'workflow_dispatch' }}
name: Upload binaries to release
uses: softprops/action-gh-release@v1
with:
files: build/bin/${{ env.BINARY_NAME }}