File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 VERSION : ${{ matrix.version }}
3232
3333 steps :
34+ - name : Dump GitHub context
35+ env :
36+ GITHUB_CONTEXT : ${{ toJSON(github) }}
37+ run : echo "$GITHUB_CONTEXT"
38+
3439 - name : Checkout
3540 uses : actions/checkout@v2
3641
@@ -60,14 +65,14 @@ jobs:
6065 uses : docker/setup-buildx-action@v1
6166
6267 - name : Login to DockerHub
63- if : ${{ github.event_name }} != 'pull_request' && ${{ env.DOCKERHUB_ORG }} != ''
68+ if : ${{ github.event_name != 'pull_request' && env.DOCKERHUB_ORG != '' }}
6469 uses : docker/login-action@v1
6570 with :
6671 username : ${{ secrets.DOCKERHUB_USER }}
6772 password : ${{ secrets.DOCKERHUB_TOKEN }}
6873
6974 - name : Login to GitHub Container Registry
70- if : github.event_name != 'pull_request'
75+ if : ${{ github.event_name != 'pull_request' }}
7176 uses : docker/login-action@v1
7277 with :
7378 registry : ghcr.io
You can’t perform that action at this time.
0 commit comments