[READ-ONLY] Mirror of https://github.com/andrioid/setup-pack. Github Action to setup pack for CNCF Buildpacks
503 B
17 lines
1name: "Buildpacks: setup-pack"
2description: "Install a version of Buldpacks' pack tool"
3branding:
4 icon: "box"
5 color: "purple"
6inputs:
7 pack-version: # id of input
8 description: "What version of Pack to install"
9 required: false
10 default: "0.18.1"
11 pack-url:
12 description: "Where to download from"
13 required: false
14 default: "https://github.com/buildpacks/pack/releases/download/v{PACK_VERSION}/pack-v{PACK_VERSION}-{PLATFORM}.tgz"
15runs:
16 using: "node12"
17 main: "dist/index.js"