Skip to content

Commit 3eaf8c5

Browse files
author
Vicente Herrera
committed
Fixes use of secrets in GH actions
1 parent 50524bc commit 3eaf8c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-forwarder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
uses: docker/login-action@v1
160160
with:
161161
registry: docker.pkg.github.com
162-
username: ${{ secret.CR_PAT_PKG_USER }}
162+
username: ${{ secrets.CR_PAT_PKG_USER }}
163163
password: ${{ secrets.CR_PAT_PKG }}
164164
- name: Build and push GitHub Packages
165165
if: github.event_name == 'release'

.github/workflows/build-installer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
uses: docker/login-action@v1
167167
with:
168168
registry: docker.pkg.github.com
169-
username: ${{ github.CR_PAT_PKG_USER }}
169+
username: ${{ secrets.CR_PAT_PKG_USER }}
170170
password: ${{ secrets.CR_PAT_PKG }}
171171
- name: Build and push GitHub Packages
172172
if: github.event_name == 'release'

0 commit comments

Comments
 (0)