mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-13 08:38:43 +03:00
26 lines
626 B
YAML
26 lines
626 B
YAML
name: 'glob'
|
|
description: 'Create a glob and deploy it to a moon'
|
|
inputs:
|
|
ship:
|
|
description: "Ship to deploy to"
|
|
required: true
|
|
credentials:
|
|
description: "base64-encoded GCP Service Account credentials"
|
|
required: true
|
|
ssh-sec-key:
|
|
description: "A base64-encoded SSH secret key for the container to use"
|
|
required: true
|
|
ssh-pub-key:
|
|
description: "The corresponding base64-encoded SSH public key"
|
|
required: true
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.ship }}
|
|
- ${{ inputs.credentials }}
|
|
- ${{ inputs.ssh-sec-key }}
|
|
- ${{ inputs.ssh-pub-key }}
|
|
|