fix: links to ansible to documentation about encrypted variables #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Ansible Collection | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/master' | |
steps: | |
# Important: This sets up your GITHUB_WORKSPACE environment variable | |
- uses: actions/checkout@v2 | |
- name: Retrieving variables from galaxy.yml | |
run: | | |
echo "COLLECTION_NAMESPACE=`grep 'namespace:' galaxy.yml | tail -n1 | awk '{ print $2}' | tr -d \\"`" >> $GITHUB_ENV | |
echo "COLLECTION_NAME=`grep 'name:' galaxy.yml | tail -n1 | awk '{ print $2}' | tr -d \\"`" >> $GITHUB_ENV | |
echo "VERSION=`grep 'version:' galaxy.yml | tail -n1 | awk '{ print $2}' | tr -d \\"`" >> $GITHUB_ENV | |
- name: Printing Ansible version & custom variables | |
run: | | |
ansible --version | |
echo $COLLECTION_NAMESPACE | |
echo $COLLECTION_NAME | |
echo $VERSION | |
# Building collection | |
- run: | | |
ansible-galaxy collection build | |
# Upload generated tar file as an artifact | |
- name: Retrieving additional environment variables | |
uses: FranzDiebold/[email protected] | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ env.COLLECTION_NAMESPACE }}-${{ env.COLLECTION_NAME }}-${{ env.VERSION }}-${{ env.CI_SHA_SHORT }} | |
path: | | |
${{ github.workspace }}/**/*.tar.gz |