Fix deprecated ::set-env, ::add-path commands

https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
This commit is contained in:
Alexey Igrychev
2020-11-25 13:39:52 +00:00
parent ff6293a6bb
commit 9aefb992ac
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ werf:
run: |
KUBECONFIG=$(mktemp -d)/config
base64 -d <(printf "%s" $KUBE_CONFIG_BASE64_DATA) > $KUBECONFIG
echo ::set-env name=KUBECONFIG::$KUBECONFIG
echo KUBECONFIG=$KUBECONFIG >> $GITHUB_ENV
env:
KUBE_CONFIG_BASE64_DATA: ${{ secrets.KUBE_CONFIG_BASE64_DATA }}