We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d34f24 commit dc7f887Copy full SHA for dc7f887
1 file changed
.github/workflows/check.yml
@@ -8,10 +8,16 @@ on:
8
jobs:
9
test-action:
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ packages: read
13
steps:
- - name: Checkout
- uses: actions/checkout@v4
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 }}
21
- name: Run jabref-action
22
uses: ./ # use local action
23
with:
0 commit comments