-
Notifications
You must be signed in to change notification settings - Fork 2
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
58 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Deploy new artbot version | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: read | ||
|
||
jobs: | ||
build-n-deploy: | ||
name: Artbot new release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "✔️ Checkout" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run playbook | ||
uses: dawidd6/action-ansible-playbook@v2 | ||
with: | ||
# Required, playbook filepath | ||
playbook: ansible/artbot_update.yml | ||
# Optional, directory where playbooks live | ||
directory: ./ | ||
# Optional, SSH private key | ||
key: ${{secrets.SSH_PRIVATE_KEY}} | ||
# Optional, SSH known hosts file content | ||
known_hosts: | | ||
${{secrets.SSH_ARTBOT_IP}} ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKhA3ORj5KS0aMO9o5hsehVhaCN7akSHg91mjodMNag+ | ||
# # Optional, encrypted vault password | ||
# vault_password: ${{secrets.VAULT_PASSWORD}} | ||
# Optional, galaxy requirements filepath | ||
# requirements: galaxy-requirements.yml | ||
# Optional, additional flags to pass to ansible-playbook | ||
options: | | ||
--inventory ansible/inventory.yml | ||
-t update |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
|
||
- hosts: artbot_server | ||
gather_facts: false | ||
|
||
roles: | ||
- name: haidra.deployments.artbot | ||
tags: artbot |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
|
||
all: | ||
hosts: | ||
artbot_server: | ||
ansible_host: 184.174.32.118 | ||
ansible_become: false | ||
ansible_user: artbot |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
|
||
collections: | ||
- git+https://github.com/Haidra-Org/deployments |