Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11bbbb9207 | ||
|
|
574fbc2143 | ||
|
|
b284f0ba18 |
17
action.yaml
17
action.yaml
@@ -13,17 +13,6 @@ inputs:
|
||||
description: A base64 encoded reference to your authorization file (~/.kube/config)
|
||||
required: true
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
|
||||
shell: bash
|
||||
- name: Configure kubectl CLI
|
||||
run: setup-kubectl.sh
|
||||
shell: bash
|
||||
env:
|
||||
KUBECTL_VERSION: ${{ inputs.kubectl-version }}
|
||||
- name: Authorize kubectl to the cluster
|
||||
run: login-kubectl.sh
|
||||
shell: bash
|
||||
env:
|
||||
BASE64_KUBE_CONFIG: ${{ inputs.base64-kube-config }}
|
||||
using: node16
|
||||
main: dist/index.js
|
||||
post: dist/post.js
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
{
|
||||
"name": "kubectl-action",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"scripts": {
|
||||
"dev": "ncc -smw --license licenses.txt build src/main.ts",
|
||||
"build": "ncc -sm --license licenses.txt build src/main.ts",
|
||||
"push": "np --no-cleanup --no-publish --no-tests --message 'chore: v%s'",
|
||||
"postpush": "git tag --force v1 && git push -f",
|
||||
"push": "np --no-cleanup --no-publish --no-tests --message 'chore: v%s' && git tag --force v1 && git push -f",
|
||||
"version": "pnpm run build && git add dist"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
Reference in New Issue
Block a user