Skip to content

Update nodered/node-red Docker tag to v4.0.3 #53

Update nodered/node-red Docker tag to v4.0.3

Update nodered/node-red Docker tag to v4.0.3 #53

Workflow file for this run

name: deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Prepare environment
run: |
id
eval $(ssh-agent -s)
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
ssh-keyscan mt-mods.minetest.ch >> ~/.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