fix(deps): update dependency next to v14.2.1 #64
Workflow file for this run
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 CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Login step only executed for pushes to main | |
- name: Login to GitHub Container Registry | |
if: github.ref == 'refs/heads/main' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GH_Token }} | |
# Build step with dynamic tagging | |
- name: Build the Docker image | |
run: | | |
docker build . --file Dockerfile --tag ghcr.io/${{ github.repository }}:${{ github.sha }} | |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then | |
docker tag ghcr.io/${{ github.repository }}:${{ github.sha }} ghcr.io/${{ github.repository }}:latest | |
fi | |
# Push step only executed for pushes to main | |
- name: Push the Docker image | |
if: github.ref == 'refs/heads/main' | |
run: | | |
docker push ghcr.io/${{ github.repository }}:${{ github.sha }} | |
docker push ghcr.io/${{ github.repository }}:latest |