Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Aadesh Kale committed Jan 4, 2024
1 parent 44000cf commit 3ee75d9
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/basic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@
# branches:
# - main

jobs:
build:
name: Display Information
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: welcome msg
run: |
echo "welcome to the gitaction world :)"
- name: Display repo and workflow information
run: |
echo "Repo name : ${{ github.repository }}"
echo "Repo branch: ${{ github.ref }}"
echo "Commit hash: ${{ github.sha }}"
echo "workflow run id: ${{ github.run_id }}"
echo "workflow run id: ${{ github.run_number }}"
# jobs:
# build:
# name: Display Information
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: welcome msg
# run: |
# echo "welcome to the gitaction world :)"
# - name: Display repo and workflow information
# run: |
# echo "Repo name : ${{ github.repository }}"
# echo "Repo branch: ${{ github.ref }}"
# echo "Commit hash: ${{ github.sha }}"
# echo "workflow run id: ${{ github.run_id }}"
# echo "workflow run id: ${{ github.run_number }}"

- name: printing workflow information
run: |
echo "workspace path: ${{ github.workspace }}"
echo "workspace files inside workspace:"
ls -la ${{ github.workspace }}
# - name: printing workflow information
# run: |
# echo "workspace path: ${{ github.workspace }}"
# echo "workspace files inside workspace:"
# ls -la ${{ github.workspace }}

0 comments on commit 3ee75d9

Please sign in to comment.