chore(deps): update node:lts-alpine docker digest to 291e84d #1236
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker CI | |
on: | |
push: | |
branches: | |
- "**" | |
tags: | |
- "*.*.*" | |
workflow_dispatch: | |
jobs: | |
build: | |
permissions: | |
contents: read | |
name: Build images | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name != 'push' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- name: wildwildangel/docker-prebuild-alpine | |
context: alpine | |
platform: linux/amd64 | |
- name: wildwildangel/docker-prebuild-devtoolset-7-toolchain-centos7 | |
context: devtoolset-7-toolchain-centos7 | |
platform: linux/amd64 | |
- name: wildwildangel/docker-prebuild-centos7 | |
context: centos7 | |
platform: linux/amd64,linux/arm64/v8 | |
- name: wildwildangel/docker-prebuild-centos8 | |
context: centos8 | |
platform: linux/amd64,linux/arm64/v8 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 | |
- name: Login to DockerHub | |
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 | |
with: | |
username: ${{ secrets.DOCKER_LOGIN }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
if: ${{ github.event_name != 'push' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 | |
- name: Set up Docker Metadata | |
id: meta | |
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 | |
with: | |
images: ${{ matrix.image.name }} | |
tags: | | |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }} | |
type=ref,event=branch | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0 | |
with: | |
context: ${{ matrix.image.context }} | |
platforms: ${{ matrix.image.platform }} | |
pull: true | |
push: ${{ github.event_name != 'push' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') }} | |
cache-from: type=gha,scope=${{ matrix.image.context }} | |
cache-to: type=gha,mode=max,scope=${{ matrix.image.context }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |