diff --git a/.github/workflows/deploy-common.yaml b/.github/workflows/deploy-common.yaml new file mode 100644 index 0000000..f022ac7 --- /dev/null +++ b/.github/workflows/deploy-common.yaml @@ -0,0 +1,11 @@ +#! vim: ts=2: + +name: deploy-common + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Install Ansible + run: echo {{ destination }} diff --git a/.github/workflows/deploy-test.yaml b/.github/workflows/deploy-test.yaml new file mode 100644 index 0000000..e147b71 --- /dev/null +++ b/.github/workflows/deploy-test.yaml @@ -0,0 +1,11 @@ +#! vim: ts=2: + +name: deploy-test + +jobs: + call-common: + uses: deploy-common + with: + destination: 'usegalaxy-test.blablabla' + +