From cd3c31f4a10c4eda2f722242dfba5872909a7553 Mon Sep 17 00:00:00 2001 From: Andrii Chubatiuk Date: Mon, 27 Jan 2025 12:36:43 +0200 Subject: [PATCH] pass secret as env variable --- .github/workflows/release.yaml | 2 ++ Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index abf77c1..e3e96f0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -49,6 +49,8 @@ jobs: git_user_signingkey: true git_commit_gpgsign: true - name: Prepare release notes if tag not exists + env: + GRAFANA_ACCESS_POLICY_TOKEN: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }} run: | export PKG_TAG="v$(yq -r '.version' package.json)" if git show-ref --tags --verify --quiet "refs/tags/${TAG}"; then diff --git a/Dockerfile b/Dockerfile index 8627cd5..2a47543 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine3.17 +FROM node:20-alpine3.21 RUN apk update && apk upgrade RUN apk add --update python3 make g++ # for Mac M1 processors