mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-24 10:33:22 +03:00
29 lines
727 B
YAML
29 lines
727 B
YAML
name: 'ota'
|
|
description: 'perform an OTA update of arvo on a remote ship'
|
|
inputs:
|
|
ship:
|
|
description: "target ship"
|
|
required: true
|
|
credentials:
|
|
description: "base64-encoded GCP Service Account credentials"
|
|
required: true
|
|
ssh-sec-key:
|
|
description: "base64-encoded SSH secret key for the container to use"
|
|
required: true
|
|
ssh-pub-key:
|
|
description: "base64-encoded corresponding SSH public key"
|
|
required: true
|
|
ref:
|
|
description: "git ref of arvo source to check out"
|
|
required: false
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.ship }}
|
|
- ${{ inputs.credentials }}
|
|
- ${{ inputs.ssh-sec-key }}
|
|
- ${{ inputs.ssh-pub-key }}
|
|
- ${{ inputs.ref }}
|