chore(deps): update node.js to v20 #23
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: Build & Push Docker Image to container image registry | |
on: | |
release: | |
types: [created] | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "Dockerfile" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
#- name: Set up QEMU (We don't need QEMU, because we don't build images for platforms other than linux/amd64, which is our current native arch in our infra | |
# uses: docker/setup-qemu-action@v1.2.0 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@f03ac48505955848960e80bbb68046aa35c7b9e7 # v2.4.1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0 | |
if: ${{ github.event_name != 'pull_request' }} | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract tag name | |
id: tags | |
if: ${{ github.event_name == 'release' }} | |
run: echo ::set-output name=name::${GITHUB_REF##*/} | |
- name: Extract flavor | |
id: flavor | |
run: if [ "${{ github.event_name }}" = "release" ]; then echo ::set-output name=name::; else echo ::set-output name=name::-dev; fi | |
- name: Generate Docker image metadata | |
uses: docker/metadata-action@507c2f2dc502c992ad446e3d7a5dfbe311567a96 # v4.3.0 | |
id: img_meta | |
with: | |
flavor: | | |
latest=auto | |
suffix=${{ steps.flavor.outputs.name }} | |
images: ghcr.io/frutbits/nextjs-tailwind-boilerplate | |
tags: | | |
${{ steps.tags.outputs.name }} | |
latest | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 # v4.0.0 | |
with: | |
context: ./ | |
tags: ${{ steps.img_meta.outputs.tags }} | |
labels: ${{ steps.img_meta.outputs.labels }} | |
push: ${{ github.event_name != 'pull_request' }} | |
cache-from: type=gha,mode=max | |
cache-to: type=gha,mode=max |