From 862161db1caf20210e83ba6497ab2ae76a79c83e Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Sat, 20 Jun 2026 05:43:06 -0500 Subject: [PATCH] Test --- .gitea/workflows/work.yml | 15 +++++++++++++++ .gitignore | 5 +++++ cross.json | 11 +++++++++++ src/main.tcross | 4 ++++ 4 files changed, 35 insertions(+) create mode 100644 .gitea/workflows/work.yml create mode 100644 .gitignore create mode 100644 cross.json create mode 100644 src/main.tcross diff --git a/.gitea/workflows/work.yml b/.gitea/workflows/work.yml new file mode 100644 index 0000000..d74eedd --- /dev/null +++ b/.gitea/workflows/work.yml @@ -0,0 +1,15 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install CrossLang + uses: git.tesses.org/tesses50/setup-crosslang + run: | + crosslang build + crosslang upload-package --token="${{ secrets.CPKG_KEY }}" --host="https://cpkg.tesseslanguage.com/" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4b90757 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +bin +obj +publish +thumbs.db diff --git a/cross.json b/cross.json new file mode 100644 index 0000000..a1fece2 --- /dev/null +++ b/cross.json @@ -0,0 +1,11 @@ +{ + "$schema": "https:\/\/crosslang.tesseslanguage.com\/\/schema\/cross-json-schema.json", + "info": { + "description": "My App 0", + "short_name": "myapp0", + "short_name_pretty": "My App 0", + "type": "console" + }, + "name": "myapp0", + "version": "1.0.0.0-dev" +} \ No newline at end of file diff --git a/src/main.tcross b/src/main.tcross new file mode 100644 index 0000000..c99677c --- /dev/null +++ b/src/main.tcross @@ -0,0 +1,4 @@ +func main(args) +{ + Console.WriteLine("My beautiful app"); +} \ No newline at end of file