mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-15 01:14:27 -05:00
chore(ci/cd): cache Docker build
This commit is contained in:
parent
82abe52ea5
commit
57be6945f2
1 changed files with 19 additions and 9 deletions
28
.github/workflows/build-docker-image.yml
vendored
28
.github/workflows/build-docker-image.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Create Docker Image
|
name: Build and Push Docker Image
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
|
@ -10,15 +10,25 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: checkout code
|
- name: checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
- name: login to docker registry
|
|
||||||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
- name: Login to Docker registry
|
||||||
- name: Build the image
|
uses: docker/login-action@v2
|
||||||
run: |
|
with:
|
||||||
docker buildx build --push \
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
--tag stonith404/pingvin-share:latest \
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
--tag stonith404/pingvin-share:${{ github.ref_name }} \
|
|
||||||
--platform linux/amd64,linux/arm64 .
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: stonith404/pingvin-share:latest,stonith404/pingvin-share:${{ github.ref_name }}
|
||||||
|
cache-from: type=gha
|
||||||
|
cache-to: type=gha,mode=max
|
||||||
|
|
Loading…
Add table
Reference in a new issue