Browse Source

fix: add missing secrets

pull/2227/head
Wing-Kam Wong 2 years ago
parent
commit
6c8a9cd6be
  1. 3
      .github/workflows/release-draft.yml
  2. 2
      .github/workflows/release-nocodb.yml

3
.github/workflows/release-draft.yml

@ -21,6 +21,9 @@ on:
description: "Previous Tag"
required: true
type: string
secrets:
NC_GITHUB_TOKEN:
required: true
jobs:
build:

2
.github/workflows/release-nocodb.yml

@ -78,6 +78,8 @@ jobs:
with:
tag: ${{ needs.process-input.outputs.target_tag }}
prev_tag: ${{ needs.process-input.outputs.prev_tag }}
secrets:
NC_GITHUB_TOKEN: "${{ secrets.NC_GITHUB_TOKEN }}"
# Build docker image and push to docker hub
release-docker:

Loading…
Cancel
Save