diff --git a/.forgejo/workflows/try.yaml b/.forgejo/workflows/try.yaml index c69749f..ea825cc 100644 --- a/.forgejo/workflows/try.yaml +++ b/.forgejo/workflows/try.yaml @@ -5,6 +5,8 @@ jobs: container: image: alpine:latest steps: + - name: Checkout + uses: actions/checkout@v4 - run: ls -al - run: pwd - run: ls /etc @@ -15,4 +17,8 @@ jobs: Ésto es un ejemplo de un comando multi-línea. EOF - - run: cat output.txt \ No newline at end of file + - run: cat output.txt + - name: install git + run: apk -y add git + - name: get repo + run: git clone \ No newline at end of file