nolim1t
5 years ago
No known key found for this signature in database
GPG Key ID: F6287B82CC84BCBD
1 changed files with
19 additions and
0 deletions
-
.github/workflows/on-push.yml
|
|
@ -27,5 +27,24 @@ jobs: |
|
|
|
- name: Login to Docker Hub |
|
|
|
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin |
|
|
|
|
|
|
|
- name: Setup Docker buildx action |
|
|
|
uses: crazy-max/ghaction-docker-buildx@v1 |
|
|
|
id: buildx |
|
|
|
with: |
|
|
|
buildx-version: latest |
|
|
|
qemu-version: latest |
|
|
|
|
|
|
|
- name: Show available Docker buildx platforms |
|
|
|
run: echo ${{ steps.buildx.outputs.platforms }} |
|
|
|
|
|
|
|
- name: Cache Docker layers |
|
|
|
uses: actions/cache@v2 |
|
|
|
id: cache |
|
|
|
with: |
|
|
|
path: /tmp/.buildx-cache |
|
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }} |
|
|
|
restore-keys: | |
|
|
|
${{ runner.os }}-buildx- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|