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 f1ece5a commit f488058Copy full SHA for f488058
.github/workflows/build.yml
@@ -4,6 +4,7 @@ permissions:
4
contents: write # This is required for actions/checkout and create release
5
pull-requests: write
6
actions: write # This is required for trigger another action which is used by JetBrains integrateion tests
7
+ packages: read
8
on:
9
pull_request:
10
types: [ opened, edited ]
@@ -229,6 +230,12 @@ jobs:
229
230
cat report.html >> $GITHUB_STEP_SUMMARY
231
232
exit $RESULT
233
+ - name: Login to GitHub Container Registry
234
+ uses: docker/login-action@v3
235
+ with:
236
+ registry: ghcr.io
237
+ username: ${{ github.actor }}
238
+ password: ${{ secrets.GITHUB_TOKEN }}
239
- name: Leeway Build
240
id: leeway
241
shell: bash
0 commit comments