We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf49a33 commit 05d5051Copy full SHA for 05d5051
dist/Makefile
@@ -5,7 +5,7 @@ box := $(shell which box)
5
composer := "composer"
6
7
.PHONY: all
8
-all: sign-phar
+all: build-phar
9
10
.PHONY: sign-phar
11
sign-phar: build-phar
docs/InternalDeveloperDocs.md
@@ -94,11 +94,31 @@ Check out the branch you want to release:
94
git checkout <branchname>
95
```
96
97
-Generate and sign the `.phar`:
+Run the tests:
98
+
99
+```
100
+./test.sh
101
102
103
+Generate the `.phar`:
104
105
106
+cd dist
107
+make build-phar
108
109
110
+Test the `.phar`:
111
112
113
+cd ../
114
+./test.sh dist/defuse-crypto.phar
115
116
117
+Sign the `.phar`:
118
119
120
cd dist
-make
121
+make sign-phar
122
123
124
Tag the release:
0 commit comments