add workflow
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m2s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m2s
This commit is contained in:
parent
178f67f4d4
commit
00eb444f5a
18
.gitea/workflows/build.yaml
Normal file
18
.gitea/workflows/build.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: Gitea Actions Demo
|
||||
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
jobs :
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "🎊The Job was triggered by ${{ github.event_name }}!"
|
||||
- run: echo "🐧This job is now running on a ${{ runner.os }} server."
|
||||
- run: echo "🔎 The name of the branch is ${{ github.ref }} and the repo is ${{ github.repository }}."
|
||||
- name: Check out the repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: echo "The ${{ github.repository has be cloned }}"
|
||||
- run: echo "💻The workflow is now ready to test the code."
|
||||
- name: List the files in the repo
|
||||
run: |
|
||||
ls ${{ github.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}"
|
||||
Loading…
Reference in New Issue
Block a user