Skip to content

Commit

Permalink
c3
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-grozav committed Oct 7, 2024
1 parent fc307d5 commit f097e41
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ on:
jobs:
say-hello:
runs-on: self-hosted
container:
image: alpine:3.18.3
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Print Hello World
run: echo "Hello, World!"

- name: PWD
run: pwd

- name: List files
run: ls -la

- name: multiple
run: env && cat /etc/os-release
run: |
pwd &&
echo "---" &&
ls -la &&
echo "---" &&
env &&
echo "---" &&
cat /etc/os-release &&
true

0 comments on commit f097e41

Please sign in to comment.