We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140d80e commit dbab441Copy full SHA for dbab441
actions/deploy-reflex-backend/action.yml
@@ -67,7 +67,7 @@ runs:
67
with:
68
registry: ghcr.io
69
username: ${{ github.actor }}
70
- password: ${{ secrets.GITHUB_TOKEN }}
+ password: ${{ github.token }}
71
72
- name: Set lower case owner name
73
shell: bash
@@ -114,6 +114,6 @@ runs:
114
key: ${{ inputs.ssh-private-key }}
115
script: |
116
# Log in to GitHub Container Registry
117
- echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin && \
+ echo ${{ github.token }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin && \
118
docker pull ghcr.io/${{ env.OWNER_LC }}/${{ inputs.site-name }}-backend:latest && \
119
docker compose up -d
0 commit comments