You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Check [`action.yml`](./action.yml) inputs for all `with` args available. You can
14
14
15
15
## File Structures
16
16
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.
18
18
19
19
### Official
20
20
@@ -29,7 +29,7 @@ example.com/ # → Root folder for the project
29
29
To install `main.yml`:
30
30
1. Set up SSH keys, Ansible Vault password and commit Trellis changes described in the following sections
31
31
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:
1. Set up SSH keys, Ansible Vault password and commit Trellis changes described in the following sections
70
70
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.
72
72
73
73
```diff
74
74
...
@@ -154,7 +154,7 @@ The examples assume you have defined `vault_password_file = .vault_pass` in `ans
154
154
155
155
To use another vault password filename:
156
156
```diff
157
-
- uses: xilonz/trellis-action@v0.1.2
157
+
- uses: steenbergen-design/trellis-action@v1
158
158
with:
159
159
vault_password: ${{ secrets.vault_pass }}
160
160
+ vault_password_file: myvaultfile.txt
@@ -165,7 +165,7 @@ To use another vault password filename:
165
165
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:
166
166
167
167
```diff
168
-
- uses: xilonz/trellis-action@v0.1.2
168
+
- uses: steenbergen-design/trellis-action@v1
169
169
with:
170
170
- vault_password: ${{ secrets.vault_pass }}
171
171
site_env: production
@@ -177,7 +177,7 @@ You can also choose to deploy multiple sites at once by searching for `site_key
177
177
If someone has a more elegant solution. Please PR!
178
178
179
179
```diff
180
-
- uses: xilonz/trellis-action@v0.1.2
180
+
- uses: steenbergen-design/trellis-action@v1
181
181
with:
182
182
vault_password: ${{ secrets.vault_pass }}
183
183
site_env: production
@@ -207,7 +207,7 @@ As a note to my future self, in order to work on this repo:
207
207
* Maybe update the README example when publishing a new version.
208
208
209
209
## 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
211
211
212
212
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.
0 commit comments