We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7dee19 commit f378f06Copy full SHA for f378f06
composite-actions/flux-gitops-deploy-action/action.yaml
@@ -7,6 +7,9 @@ inputs:
7
KUBE_CONFIG:
8
description: "Kubeconfig for the target cluster"
9
required: true
10
+ GITHUB_TOKEN:
11
+ description: "The token to use for accessing GHCR"
12
+ required: true
13
runs:
14
using: "composite"
15
steps:
@@ -45,7 +48,7 @@ runs:
45
48
GITHUB_REF_NAME: ${{ github.ref_name }}
46
49
GITHUB_REPOSITORY: ${{ github.repository }}
47
50
GITHUB_SHA: ${{ github.sha }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
+ GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
52
53
- name: 🔁 Reconcile
54
shell: bash
0 commit comments