-
-
Notifications
You must be signed in to change notification settings - Fork 12
49 lines (38 loc) · 1.49 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
name: Downgraded Release
on:
push:
tags:
- '*'
jobs:
downgrade_release:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v2"
-
uses: "shivammathur/setup-php@v2"
with:
php-version: 8.1
coverage: none
- uses: "ramsey/composer-install@v2"
# downgrade /src to PHP 7.2
- run: vendor/bin/rector process src --config build/rector-downgrade-php-72.php --ansi
- run: vendor/bin/ecs check src --fix --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 ecs.php 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: |
# separate a "git add" to add untracked (new) files too
git add --all
git commit -m "release PHP 7.2 downgraded"
# force push tag, so there is only 1 version
git tag "${GITHUB_REF#refs/tags/}" --force
git push origin "${GITHUB_REF#refs/tags/}" --force