Skip to content

Commit dc7f887

Browse files
authored
Try to fix unauthorized
1 parent 5d34f24 commit dc7f887

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/check.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ on:
88
jobs:
99
test-action:
1010
runs-on: ubuntu-latest
11+
permissions:
12+
packages: read
1113
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v4
14-
14+
- uses: actions/checkout@v4
15+
- name: Log in to GitHub Container Registry
16+
uses: docker/login-action@v3
17+
with:
18+
registry: ghcr.io
19+
username: ${{ github.actor }}
20+
password: ${{ secrets.GITHUB_TOKEN }}
1521
- name: Run jabref-action
1622
uses: ./ # use local action
1723
with:

0 commit comments

Comments
 (0)