2
0

ubuntu-latest
All checks were successful
Gitea actions demo. / build (push) Successful in 48s
Gitea actions demo. / run-app (push) Successful in 2s
Gitea actions demo. / cleanup (push) Successful in 2s

This commit is contained in:
shode 2025-02-06 23:15:35 +01:00
parent 76e1f12d23
commit aa4dc2326f

View File

@ -4,7 +4,7 @@ on: [push]
jobs:
build:
image: docker:latest
image: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
@ -13,14 +13,14 @@ jobs:
run: |
docker build -t hello-world-image .
run-app:
image: docker:latest
image: ubuntu-latest
steps:
- name: Run Docker Container
run: |
docker run --name hello-world-container --rm hello-world-image
cleanup:
image: docker:latest
image: ubuntu-latest
steps:
- name: Remove Docker Image
run: |