Skip to content

Commit 43f59a3

Browse files
committed
version 1 updates
1 parent c371f63 commit 43f59a3

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ const child_process = __webpack_require__(129);
652652
const fs = __webpack_require__(747);
653653
const yaml = __webpack_require__(414);
654654

655-
const verbose = core.getInput('verbose') ? '-vvv' : '';
655+
const verbose = core.getInput('verbose') == 'true' ? '-vvv' : false;
656656

657657
const site_path = core.getInput('site_path');
658658
const trellis_path = core.getInput('trellis_path');

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const child_process = require('child_process');
33
const fs = require('fs');
44
const yaml = require('js-yaml');
55

6-
const verbose = core.getInput('verbose') ? '-vvv' : '';
6+
const verbose = core.getInput('verbose') == 'true' ? '-vvv' : false;
77

88
const site_path = core.getInput('site_path');
99
const trellis_path = core.getInput('trellis_path');

readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Check [`action.yml`](./action.yml) inputs for all `with` args available. You can
1414

1515
## File Structures
1616

17-
[Trellis Deploy](https://github.com/Xilonz/trellis-action) comes with 2 different `main.yml` examples. They are expecting different Trellis and Bedrock structures.
17+
[Trellis Deploy](https://github.com/steenbergen-design/trellis-action) comes with 2 different `main.yml` examples. They are expecting different Trellis and Bedrock structures.
1818

1919
### Official
2020

@@ -29,7 +29,7 @@ example.com/ # → Root folder for the project
2929
To install `main.yml`:
3030
1. Set up SSH keys, Ansible Vault password and commit Trellis changes described in the following sections
3131
1. In your repository, go to the *Settings > Secrets* menu and create a new secret called `vault_pass`. Put the vault pass into the contents field.
32-
1. In your workflow definition file, add `xilonz/trellis-action@v0.1.2`. See next example:
32+
1. In your workflow definition file, add `steenbergen-design/trellis-action@v1`. See next example:
3333

3434
```yaml
3535
# .github/workflows/main.yml
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
4545

46-
- uses: xilonz/trellis-action@v0.1.2
46+
- uses: steenbergen-design/trellis-action@v1
4747
with:
4848
vault_password: ${{ secrets.VAULT_PASS }}
4949
site_env: production
@@ -68,7 +68,7 @@ See: [roots/trellis#883 (comment)](https://github.com/roots/trellis/issues/883#i
6868
6969
1. Set up SSH keys, Ansible Vault password and commit Trellis changes described in the following sections
7070
1. In your repository, go to the *Settings > Secrets* menu and create a new secret called `vault_pass`. Put the vault pass into the contents field.
71-
1. In your workflow definition file, add `xilonz/trellis-action@v0.1.2` and another checkout action for your trellis repo. See next example. The trellis action will move the site to its right directory, so there's no additional setup required.
71+
1. In your workflow definition file, add `steenbergen-design/trellis-action@v1` and another checkout action for your trellis repo. See next example. The trellis action will move the site to its right directory, so there's no additional setup required.
7272
7373
```diff
7474
...
@@ -154,7 +154,7 @@ The examples assume you have defined `vault_password_file = .vault_pass` in `ans
154154

155155
To use another vault password filename:
156156
```diff
157-
- uses: xilonz/trellis-action@v0.1.2
157+
- uses: steenbergen-design/trellis-action@v1
158158
with:
159159
vault_password: ${{ secrets.vault_pass }}
160160
+ vault_password_file: myvaultfile.txt
@@ -165,7 +165,7 @@ To use another vault password filename:
165165
Using [Ansible Vault](https://docs.ansible.com/ansible/playbooks_vault.html) to encrypt sensitive data is strongly recommended. In case you have a very strong reason not to use Ansible Vault, remove the var:
166166

167167
```diff
168-
- uses: xilonz/trellis-action@v0.1.2
168+
- uses: steenbergen-design/trellis-action@v1
169169
with:
170170
- vault_password: ${{ secrets.vault_pass }}
171171
site_env: production
@@ -177,7 +177,7 @@ You can also choose to deploy multiple sites at once by searching for `site_key
177177
If someone has a more elegant solution. Please PR!
178178

179179
```diff
180-
- uses: xilonz/trellis-action@v0.1.2
180+
- uses: steenbergen-design/trellis-action@v1
181181
with:
182182
vault_password: ${{ secrets.vault_pass }}
183183
site_env: production
@@ -207,7 +207,7 @@ As a note to my future self, in order to work on this repo:
207207
* Maybe update the README example when publishing a new version.
208208

209209
## Credits, Copyright and License
210-
[Trellis Action](https://github.com/Xilonz/trellis-action) is a [Steenbergen Design](https://steenbergen.design) project and maintained by Arjan Steenbergen
210+
[Trellis Action](https://github.com/steenbergen-design/trellis-action) is a [Steenbergen Design](https://steenbergen.design) project and maintained by Arjan Steenbergen
211211

212212
Special thanks to [the Roots team](https://roots.io/about/) whose [Trellis](https://github.com/roots/trellis) make this project possible. Also special thanks to [TypistTech](https://github.com/TypistTech) where I got a lot if inspiration and got [parts](https://github.com/TypistTech/tiller-circleci) of this documentation from.
213213

0 commit comments

Comments
 (0)