Skip to content

Bump next from 16.2.3 to 16.2.4 #453

Bump next from 16.2.3 to 16.2.4

Bump next from 16.2.3 to 16.2.4 #453

Workflow file for this run

name: Docker Image CI
permissions:
contents: read
packages: write
attestations: write
id-token: write
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v6
- name: Login to Docker Hub
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v4
- name: Build and push
id: docker_build
uses: docker/build-push-action@v7
with:
context: ./
file: ./Dockerfile
push: true
tags: |
${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}