15 lines
310 B
YAML
15 lines
310 B
YAML
name: Docker Build and Release Upload
|
|
|
|
on:
|
|
[ push ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
default_image: ghcr.io/catthehacker/ubuntu:full-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build Docker image
|
|
run: docker build -t my-image:latest . |