Compare commits

...

4 Commits

Author SHA1 Message Date
dm c5a7d7863e test 2024-08-13 08:24:48 +08:00
dm 910ed2ef37 test
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s Details
2024-08-13 08:23:47 +08:00
dm 4a0a4af998 test
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m4s Details
2024-08-12 17:08:49 +08:00
dm 91c2b6beda test
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1s Details
2024-08-12 16:59:43 +08:00
1 changed files with 14 additions and 12 deletions

View File

@ -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 }}."