Test
Some checks failed
Gitea Actions Demo / build-and-push-image (push) Failing after 0s

This commit is contained in:
2026-06-20 05:43:06 -05:00
parent b48a571000
commit 862161db1c
4 changed files with 35 additions and 0 deletions

15
.gitea/workflows/work.yml Normal file
View File

@@ -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/"

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
.DS_Store
bin
obj
publish
thumbs.db

11
cross.json Normal file
View File

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

4
src/main.tcross Normal file
View File

@@ -0,0 +1,4 @@
func main(args)
{
Console.WriteLine("My beautiful app");
}