Skip to content

Update GitHub Actions #1

Update GitHub Actions

Update GitHub Actions #1

Workflow file for this run

name: Test buidling Docker image
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
build-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: user/test-image:latest