From 153b0bddc76c83ef00e14fa717aa0e33f5d96428 Mon Sep 17 00:00:00 2001 From: max <68344959+codewmax@users.noreply.github.com> Date: Sat, 9 Mar 2024 16:26:58 +0100 Subject: [PATCH] Update GitHub Actions workflow to include additional steps --- .github/workflows/capture.yml | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/.github/workflows/capture.yml b/.github/workflows/capture.yml index 6ad62cb..35d9285 100644 --- a/.github/workflows/capture.yml +++ b/.github/workflows/capture.yml @@ -18,6 +18,24 @@ jobs: Explore-GitHub-Actions: runs-on: ubuntu-latest steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + + - name: Check out repository code + uses: actions/checkout@v4 + + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + + - name: List files in the repository + run: | + ls ${{ github.workspace }} + + - run: echo "🍏 This job's status is ${{ job.status }}." - name: Screenshot Website uses: swinton/screenshot-website@v1.x @@ -33,17 +51,7 @@ jobs: message: "Save screenshots" add: "*.png" - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." +