-
Notifications
You must be signed in to change notification settings - Fork 62
51 lines (39 loc) · 1.66 KB
/
downgraded_release.yaml
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
name: Downgraded Release
# https://tomasvotruba.com/blog/how-to-release-php-81-and-72-package-in-the-same-repository/
# /~https://github.com/TomasVotruba/cognitive-complexity/blob/main/.github/workflows/downgraded_release.yaml
# /~https://github.com/symplify/config-transformer/blob/main/.github/workflows/downgraded_release.yaml
on:
push:
tags:
- '*'
jobs:
downgrade_release:
runs-on: ubuntu-latest
steps:
-
uses: "actions/checkout@v4"
-
uses: "shivammathur/setup-php@v2"
with:
php-version: 8.3
coverage: none
- uses: "ramsey/composer-install@v2"
# downgrade /src to PHP 7.2
- run: vendor/bin/rector process src config --config build/rector-downgrade-php-72.php --ansi
# copy PHP 7.2 composer
- run: cp build/composer-php-72.json composer.json
# clear the dev files
- run: rm -rf build .github tests stubs phpstan.neon phpunit.xml
# setup git user
-
run: |
git config user.email "action@github.com"
git config user.name "GitHub Action"
# publish to the same repository with a new tag
-
name: "Tag Downgraded Code"
run: |
git commit -a -m "release PHP 7.2 downgraded ${GITHUB_REF#refs/tags/}"
# force push tag, so there is only 1 version
git tag "${GITHUB_REF#refs/tags/}" --force
git push origin "${GITHUB_REF#refs/tags/}" --force