Browse Source

fix: add missing secrets

pull/2227/head
Wing-Kam Wong 3 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" description: "Previous Tag"
required: true required: true
type: string type: string
secrets:
NC_GITHUB_TOKEN:
required: true
jobs: jobs:
build: build:

2
.github/workflows/release-nocodb.yml

@ -78,6 +78,8 @@ jobs:
with: with:
tag: ${{ needs.process-input.outputs.target_tag }} tag: ${{ needs.process-input.outputs.target_tag }}
prev_tag: ${{ needs.process-input.outputs.prev_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 # Build docker image and push to docker hub
release-docker: release-docker:

Loading…
Cancel
Save