chore(deps): update minetest_game digest to c7be7c1 #164
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
name: deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Prepare environment | |
run: | | |
id | |
eval $(ssh-agent -s) | |
mkdir -p ~/.ssh | |
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa | |
ssh-keyscan styx.rudin.io >> ~/.ssh/known_hosts | |
chmod -R 700 ~/.ssh | |
ansible-galaxy collection install community.general | |
echo "${{ secrets.VAULT_PASS }}" > ~/.vault_pass.txt | |
- name: Run ansible | |
run: | | |
ansible-playbook -i hosts --vault-password-file ~/.vault_pass.txt --private-key ~/.ssh/id_rsa deploy.yml |