Skip to content

chore(deps): update nginx docker tag to v1.27.3 #165

chore(deps): update nginx docker tag to v1.27.3

chore(deps): update nginx docker tag to v1.27.3 #165

Workflow file for this run

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