This commit is contained in:
parent
9d8704d87d
commit
5b3e3ef854
19
.github/workflows/build.yaml
vendored
Normal file
19
.github/workflows/build.yaml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Github Actions Demo
|
||||
run-name: ${{ github.actor }} is testing out GitHub Actions (on Gitea) 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: |
|
||||
ls ${{ github.workspace }}
|
||||
- run: |
|
||||
echo hostname
|
||||
hostname || true
|
||||
echo /bin
|
||||
ls /bin || true
|
||||
echo /etc
|
||||
ls /etc || true
|
Loading…
Reference in New Issue
Block a user