-
Notifications
You must be signed in to change notification settings - Fork 8
56 lines (46 loc) · 1.45 KB
/
publish-phar.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
name: Publish the released PHAR
on:
release:
types: [created]
workflow_dispatch:
inputs:
tag:
description: "Tag release version"
required: true
jobs:
publish:
runs-on: ubuntu-latest
name: Release PHAR
steps:
- name: Extract the tag version
id: tag
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
GITHUB_REF=${{ github.event.inputs.tag }}
fi
echo "tag=${GITHUB_REF##*v}" >> "$GITHUB_OUTPUT"
- name: Checkout the code
uses: actions/checkout@v4
with:
ref: v${{ steps.tag.outputs.tag }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: dom, curl, libxml, mbstring, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install the dependencies
run: composer install --prefer-dist --no-progress
- name: Create the PHAR file.
run: ./whisky app:build whisky.phar --build-version=${{ steps.tag.outputs.tag }}
- name: Upload the PHAR artifact
uses: actions/upload-artifact@v4
with:
name: whisky.phar
path: builds/whisky.phar
- name: Upload the PHAR to release
run: gh release upload v${{ steps.tag.outputs.tag }} builds/whisky.phar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}