chore(deps): update node:18-alpine docker digest to 2d9b3f7 #1617
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 Image | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
ghcr: | |
name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3 | |
- name: Login to ghcr.io | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} App | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6 | |
with: | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: ghcr.io/spillhuset/django-system-template-app | |
- name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} Nginx | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6 | |
with: | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
push: ${{ github.ref == 'refs/heads/main' }} | |
tags: ghcr.io/spillhuset/django-system-template-nginx | |
target: runtime-nginx |