Skip to content

Commit

Permalink
Create gitaction-demo2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
osgeum authored Jan 31, 2024
1 parent 7bc2ade commit 5c656d6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/gitaction-demo2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: GitActions-Demo2
on: [push]
jobs:
GitActions-demo-job:
runs-on: ubuntu-latest
steps:
- run: echo "job.triggered.event is ${{ github.event_name }}"
- run: echo "job.running.os is ${{ runner.os }}"
- run: echo "job.branch is ${{ github.ref }}"
- run: echo "job.repository is ${{ github.repository }}"
- run: echo "job.status is ${{ job.status }}."
- run: echo "The workflow is code test on the runner."
- name: Check out repository code
uses: actions/checkout@v2
- name: List files on repository
run: |
ls ${{ github.workspace }}

0 comments on commit 5c656d6

Please sign in to comment.