Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ box := $(shell which box)
composer := "composer"

.PHONY: all
all: sign-phar
all: build-phar

.PHONY: sign-phar
sign-phar: build-phar
Expand Down
24 changes: 22 additions & 2 deletions docs/InternalDeveloperDocs.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,31 @@ Check out the branch you want to release:
git checkout <branchname>
```

Generate and sign the `.phar`:
Run the tests:

```
./test.sh
```

Generate the `.phar`:

```
cd dist
make build-phar
```

Test the `.phar`:

```
cd ../
./test.sh dist/defuse-crypto.phar
```

Sign the `.phar`:

```
cd dist
make
make sign-phar
```

Tag the release:
Expand Down