Skip to content

WIP

WIP #4

Workflow file for this run

name: Build
on:
workflow_dispatch:
release:
types: [published]
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: box
- name: Build phar
run: box build
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: phar-build
path: '*.phar'