Skip to content

Commit

Permalink
workflows: store config instead of images after testbuild as we no lo…
Browse files Browse the repository at this point in the history
…nger build images
  • Loading branch information
FFHener authored and Noki committed Feb 10, 2024
1 parent 807b743 commit 1fba288
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Test Build
name: Config Run
on:
push:
branches:
Expand All @@ -10,7 +10,7 @@ on:

jobs:
build:
name: Ansible Test Build
name: Ansible Config Run
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -50,10 +50,10 @@ jobs:
if [ -n "${CHANGED_HOSTS}" ] || [ -n "${CHANGED_LOCATIONS}" ] ; then
ansible-playbook play.yml --limit "${CHANGED_HOSTS:+$CHANGED_HOSTS,}$CHANGED_LOCATIONS"
fi
mkdir -p ./tmp/images
mkdir -p ./tmp/configs
- name: Store build output
uses: actions/upload-artifact@v1
with:
name: ansibleimages
path: ./tmp/images
name: ansibleconfigs
path: ./tmp/configs

0 comments on commit 1fba288

Please sign in to comment.