This commit is contained in:
parent
e830d50593
commit
5a728fc404
1 changed files with 11 additions and 1 deletions
|
|
@ -6,4 +6,14 @@ jobs:
|
||||||
- name: Run something in Alpine
|
- name: Run something in Alpine
|
||||||
uses: docker://alpine:3.20
|
uses: docker://alpine:3.20
|
||||||
with:
|
with:
|
||||||
args: echo "Hello from inside Alpine"
|
args: |
|
||||||
|
echo "Hello from inside Alpine"
|
||||||
|
distro=$(cat /etc/os-release)
|
||||||
|
echo Distro: $distro
|
||||||
|
- name: Run something in ArchBtw
|
||||||
|
uses: docker://archlinux:base
|
||||||
|
with:
|
||||||
|
args: |
|
||||||
|
echo "Hello from inside ArchBtw"
|
||||||
|
distro=$(cat /etc/os-release)
|
||||||
|
echo Distro: $distro
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue