-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
17 lines (17 loc) · 711 Bytes
/
Copy pathaction.yml
File metadata and controls
17 lines (17 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Setup Coder code-server
author: Jacob Hummer <jcbhmr@outlook.com>
description: 💻 Install code-server to run a local VS Code web instance
branding:
icon: box
color: blue
inputs:
code-server-version:
description: Which version of code-server to install. This defaults to the latest stable release. Use `edge` to download the latest prerelease, or a `N.N.N` versions specifier if you wish. Use `latest` (the default) to download the latest version. This field **does not** support semver specifiers.
default: latest
runs:
using: composite
steps:
- shell: bash
run: '"$GITHUB_ACTION_PATH/main.sh"'
env:
INPUT_CODE_SERVER_VERSION: ${{ inputs.code-server-version }}