aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/deploy-request/action.yml
blob: 6f1a22d804799121b6cb77878105d5d2e6f93f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "deployment-request"
author: "menny"
description: "Performs a deploy request"

inputs:
  ref:
    description: "ref to publish"
    required: true
  api_user_name:
    description: "the username to use for API calls"
    required: true
  api_user_token:
    description: "the user API token to use for API calls"
    required: true

runs:
  using: "docker"
  image: "docker://menny/ndk_ask:1.13.5"
  entrypoint: /bin/bash
  args:
    - .github/actions/deploy-request/request.sh
    - ${{ inputs.ref }}
    - ${{ inputs.api_user_name }}
    - ${{ inputs.api_user_token }}

branding:
  icon: 'package'
  color: 'purple'