We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76ba047 commit ea6e67bCopy full SHA for ea6e67b
1 file changed
.github/workflows/package.yml
@@ -121,12 +121,26 @@ jobs:
121
rake version:update
122
env:
123
GROONGA_REPOSITORY: ../groonga
124
+ - name: Login to GitHub Container registry
125
+ uses: docker/login-action@v3
126
+ with:
127
+ registry: ghcr.io
128
+ username: ${{ github.actor }}
129
+ password: ${{ secrets.GITHUB_TOKEN }}
130
- name: Build with docker
131
run: |
132
cd packages
133
+ rake docker:pull || :
134
rake ${TASK_NAMESPACE}:build
135
136
137
+ - name: Push the built Docker image
138
+ continue-on-error: true
139
+ run: |
140
+ cd packages
141
+ rake docker:push
142
+ env:
143
+ GROONGA_REPOSITORY: ../groonga
144
- uses: actions/upload-artifact@v3
145
with:
146
name: packages-${{ matrix.id }}
0 commit comments