Skip to content

Delete entrypoint.sh #4

Delete entrypoint.sh

Delete entrypoint.sh #4

Workflow file for this run

name: Build Multi-Runtime Image
on:
push:
branches:
- main
jobs:
push_to_registry:
name: Build and Push Docker Image
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Lowercase repo name
run: |
echo "REPO_LC=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/${{ env.REPO_LC }}:latest