Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Worflow for Debugging
on: workflow_dispatch
permissions:
contents: read
actions: read
jobs:
creating-artefacts:
runs-on: ubuntu-latest
steps:
- name: Create test file
run: echo "This is a test file." > test.txt
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: logs
path: test.txt
configuring-enviroment-variables:
Comment thread Fixed
runs-on: ubuntu-latest
needs: creating-artefacts
steps:
- name: Set 2 environment variables
run: |
echo ACTIONS_RUNNER_DEBUG=${{ vars.ACTIONS_RUNNER_DEBUG }}
echo ACTIONS_STEP_DEBUG=${{ vars.ACTIONS_STEP_DEBUG }}
configuring-step-summary:
Comment thread Fixed
runs-on: ubuntu-latest
steps:
- name: Set step summary
run: echo "This is a log about the step summary" >> $GITHUB_STEP_SUMMARY
- name: Set other step summary
run: echo "This is other log about the step summary" >> $GITHUB_STEP_SUMMARY
adding-logs-by-step:
Comment thread Fixed
runs-on: ubuntu-latest
steps:
- name: Add logs by step
run: |
echo "This is a log about the step"
echo "This is another log about the step"
Comment thread Fixed
Loading