Skip to content

Commit 353d4ac

Browse files
committed
Update README
1 parent 24ae93e commit 353d4ac

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

INTERNAL.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Deploy a new version
2+
3+
```bash
4+
reason="New version"
5+
git add -A .
6+
git commit -m "${reason}"
7+
git tag -a v1 -m "${reason}"
8+
git push --follow-tags
9+
```

README.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
# GitHub Action to deploy Node.js, Python, PHP and more to Stackhero
22

3-
See [https://www.stackhero.io/en/stackhero/documentations](https://www.stackhero.io/en/stackhero/documentations)
3+
Deploy your code to production easily using GitHub Actions:
44

5+
- [Deploy Node.js code to production](https://www.stackhero.io/en/services/Node-js/documentations/Deploy-with-GitHub-Actions)
6+
- [Deploy Python code to production](https://www.stackhero.io/en/services/Python/documentations/Deploy-with-GitHub-Actions)
7+
- [Deploy PHP code to production](https://www.stackhero.io/en/services/PHP/documentations/Deploy-with-GitHub-Actions)
8+
- [Deploy Ruby code to production](https://www.stackhero.io/en/services/Ruby/documentations/Deploy-with-GitHub-Actions)
59

6-
## Deploy a new version
710

8-
```bash
9-
reason="New version"
10-
git add -A .
11-
git commit -m "${reason}"
12-
git tag -a v1 -m "${reason}"
13-
git push --follow-tags
14-
```
11+
Service proposed by [Stackhero cloud](https://www.stackhero.io).

0 commit comments

Comments
 (0)