From f7a025b4c5e3e5766ce2a6dec88d7d292274ebc2 Mon Sep 17 00:00:00 2001 From: Christopher Palmer-Richez Date: Fri, 2 Aug 2024 10:18:53 -0400 Subject: [PATCH] Add doc header, enforce 60 char column limit --- .github/workflows/publish.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 0650eef..06e0797 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,3 +1,4 @@ +--- - name: Deploy collection to galaxy on: release: @@ -17,7 +18,10 @@ run: ansible-galaxy collection build - name: Get expected version string - shell: VERSION=$(echo "${{ github.ref_name }}" | echo "v0.0.1" | sed -e 's/v\(.*\)/\1/' + shell: VERSION=$(echo ${{ github.ref_name }} | sed -e 's/v\(.*\)/\1/' - name: Publish to Galaxy - run: ansible-galaxy collection publish tofugarden-secureboot-$VERSION.tar.gz --token ${{ secrets.GALAXY_API_KEY }} + run: | + ansible-galaxy collection publish \ + tofugarden-secureboot-$VERSION.tar.gz \ + --token ${{ secrets.GALAXY_API_KEY }}