generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,9 @@ jobs: | |
uses: ./action | ||
with: | ||
compose-file: action/docker-compose.test.yml | ||
secrets: | | ||
- name: secret | ||
value: ${{ secrets.SECRET }} | ||
stack-name: david | ||
ssh-user-at-host: [email protected] | ||
ssh-port: 2222 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,16 +37,20 @@ jobs: | |
compose-file: docker-compose.yml | ||
stack-name: my-app | ||
ssh-user-at-host: [email protected] | ||
secrets: | | ||
- name: secret | ||
value: ${{ secrets.SECRET }} | ||
``` | ||
## Inputs | ||
| Name | Description | | ||
|--------------------|----------------------------------------------------------------| | ||
| `compose-file` | Path to your docker compose definition inside the repository. | | ||
| `stack-name` | Name of the Docker Stack that shoud be created on your server. | | ||
| `ssh-user-at-host` | User@host to connect to (e.g. `[email protected]`) | | ||
| `ssh-port` | SSH port to connect to. Defaults to 22 if not defined. | | ||
| Name | Description | | ||
|--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| `compose-file` | Path to your docker compose definition inside the repository. | | ||
| `secrets` | Allows to define a YAML array of Docker secrets which should be created (not required). You need to define it as a multiline YAML string, as this is technically not supported by Actions directly. | | ||
| `stack-name` | Name of the Docker Stack that shoud be created on your server. | | ||
| `ssh-user-at-host` | User@host to connect to (e.g. `[email protected]`) | | ||
| `ssh-port` | SSH port to connect to. Defaults to 22 if not defined. | | ||
|
||
## License | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters