Compare commits
4 Commits
7a84a80982
...
c5a7d7863e
Author | SHA1 | Date |
---|---|---|
dm | c5a7d7863e | |
dm | 910ed2ef37 | |
dm | 4a0a4af998 | |
dm | 91c2b6beda |
|
@ -1,18 +1,20 @@
|
||||||
name: Gitea Actions Demo
|
name: Gitea Actions Demo
|
||||||
run-name: ${{ github.actor }} is testing out Gitea Actions
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
Explore-Gitea-Actions:
|
||||||
runs-on: ps_runner_labels
|
runs-on: ps_runner_labels
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
volumes:
|
||||||
|
- ubuntu_hostedtoolcache:/opt/hostedtoolcache
|
||||||
|
# env:
|
||||||
|
# RUNNER_TOOL_CACHE: /toolcache
|
||||||
steps:
|
steps:
|
||||||
- run: echo " The job was automatically triggered by a ${{ github.event_name }} event."
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||||
- run: echo " This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||||
- run: echo " The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||||
- name: Check out repository code
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
uses: actions/checkout@v3
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
- run: echo " The ${{ github.repository }} repository has been cloned to the runner."
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||||
- run: echo " ️ The workflow is now ready to test your code on the runner."
|
- run: docker version
|
||||||
- name: List files in the repository
|
|
||||||
run: |
|
|
||||||
ls ${{ github.workspace }}
|
|
||||||
- run: echo " This job's status is ${{ job.status }}."
|
|
Loading…
Reference in New Issue