Skip to content

Merge branch 'galaxy-re' of github.com:CESNET/usegalaxy into galaxy-re #141

Merge branch 'galaxy-re' of github.com:CESNET/usegalaxy into galaxy-re

Merge branch 'galaxy-re' of github.com:CESNET/usegalaxy into galaxy-re #141

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
deploy-test:
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: actions/checkout@v2
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Create SSH key
run: |
install -m 600 -D /dev/null ~/.ssh/id_rsa
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
echo "${{ secrets.SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts
- name: Copy files to test instance and preserve secrets and hosts
run: |
rsync -rav * [email protected]:~/usegalaxy-${{ steps.date.outputs.date }}
ssh [email protected] 'cp ~/usegalaxy/group_vars/secret.yml ~/usegalaxy-${{ steps.date.outputs.date }}/group_vars'
ssh [email protected] 'cp ~/usegalaxy/hosts ~/usegalaxy-${{ steps.date.outputs.date }}'
ssh [email protected] 'cp ~/usegalaxy/.vault-password.txt ~/usegalaxy-${{ steps.date.outputs.date }}'
- name: Run playbook
run: |
# don't use "--force" here, some changes in roles were done manually and will be overwritten, see README.md
ssh [email protected] 'cd ~/usegalaxy-${{ steps.date.outputs.date }} && ansible-galaxy install -p roles -r requirements.yml'
ssh [email protected] 'cd ~/usegalaxy-${{ steps.date.outputs.date }} && ansible-playbook galaxy.yml'