learn-forgejo-actions/.forgejo/workflows/images-per-step.yaml
Waylon S. Walker b69b7c3cf6
All checks were successful
/ test (push) Successful in 21s
sh script
2025-08-28 12:55:34 -05:00

25 lines
650 B
YAML

on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Run something in Alpine
uses: docker://alpine:3.20
with:
entrypoint: /bin/sh
args: |
-c '
echo "Hello from inside Alpine"
distro=$(cat /etc/os-release)
echo Distro: $distro
'
- name: Run something in ArchBtw
uses: docker://archlinux:base
with:
entrypoint: /bin/sh
args: |
-c '
echo "Hello from inside ArchBtw"
distro=$(cat /etc/os-release)
echo Distro: $distro
'