Skip to content

Bump actions/upload-artifact from 4 to 5 #63

Bump actions/upload-artifact from 4 to 5

Bump actions/upload-artifact from 4 to 5 #63

Workflow file for this run

name: Test Container Image
on:
pull_request:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
build-args: |
GIT_COMMIT_SHA=${{ github.sha }}
GIT_REPOSITORY_URL=https://github.com/${{ github.repository }}
VERSION=${{ github.ref_name }}
push: false