From 610349434c5a509fa6dda6f37f61081297fccec8 Mon Sep 17 00:00:00 2001 From: Robert de Bock Date: Sat, 21 Dec 2019 06:38:12 +0100 Subject: [PATCH] Not token. --- README.md | 2 +- action.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8520338..ac87067 100644 --- a/README.md +++ b/README.md @@ -42,5 +42,5 @@ jobs: - name: galaxy uses: robertdebock/galaxy-action@master with: - galaxy_api_token: ${{ secrets.galaxy_api_token }} + galaxy_api_key: ${{ secrets.galaxy_api_key }} ``` diff --git a/action.yml b/action.yml index 99d5c33..eb76fc8 100644 --- a/action.yml +++ b/action.yml @@ -3,15 +3,15 @@ description: Publish Ansible role to Galaxy author: Robert de Bock inputs: - galaxy_api_token: - description: Your personal Galaxy token found under Galaxy -> Your Profile -> Preferences -> API Key + galaxy_api_key: + description: Your personal Galaxy key found under Galaxy -> Your Profile -> Preferences -> API Key required: true runs: using: docker image: 'docker://robertdebock/github-action-galaxy' env: - galaxy_api_token: ${{ inputs.namespace }} + galaxy_api_key: ${{ inputs.galaxy_api_key }} branding: icon: play