From 1fba288f8b5da39a225a93ac087032d44317355a Mon Sep 17 00:00:00 2001 From: Ffhener Date: Thu, 8 Feb 2024 12:37:26 +0100 Subject: [PATCH] workflows: store config instead of images after testbuild as we no longer build images --- .github/workflows/{testbuild.yml => configrun.yml} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{testbuild.yml => configrun.yml} (93%) diff --git a/.github/workflows/testbuild.yml b/.github/workflows/configrun.yml similarity index 93% rename from .github/workflows/testbuild.yml rename to .github/workflows/configrun.yml index 9a4a42a4f..d30f21ee0 100644 --- a/.github/workflows/testbuild.yml +++ b/.github/workflows/configrun.yml @@ -1,5 +1,5 @@ --- -name: Test Build +name: Config Run on: push: branches: @@ -10,7 +10,7 @@ on: jobs: build: - name: Ansible Test Build + name: Ansible Config Run runs-on: ubuntu-latest steps: @@ -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