Skip to content

Commit

Permalink
Move Ansible install to Deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
leonmelein committed Dec 26, 2024
1 parent ed5f94f commit ab021ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Install Ansible
shell: bash
run: |
sudo apt update
sudo apt install -y ansible

- name: Checkout
uses: actions/checkout@v4
Expand All @@ -41,6 +35,12 @@ jobs:
needs: build

steps:
- name: Install Ansible
shell: bash
run: |
sudo apt update
sudo apt install -y ansible
- name: Load deploy key
uses: webfactory/ssh-agent@v0.9.0
with:
Expand Down

0 comments on commit ab021ce

Please sign in to comment.