From 91e82116e5808342d3365ddb22855752cc590107 Mon Sep 17 00:00:00 2001 From: indigo Date: Tue, 26 Dec 2023 22:06:38 +0800 Subject: [PATCH] Init Repo --- .gitea/workflows/deploy.yml | 11 +++++++++++ README.md | 15 +++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .gitea/workflows/deploy.yml create mode 100644 README.md diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..bbd6638 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,11 @@ +name: Gitea Actions Deploy +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - 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 "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..655120a --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Test Repo for Action +This repo for test Action + +## Requirement +* Module A +* Module B +* Module C + +## Build Code +```python +import os +os.path.join(os.getenv('PROJECT_ROOT'), 'file.txt') +for i in range(10): + print(i) +``` \ No newline at end of file