This commit is contained in:
15
.gitea/workflows/work.yml
Normal file
15
.gitea/workflows/work.yml
Normal 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
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
.DS_Store
|
||||||
|
bin
|
||||||
|
obj
|
||||||
|
publish
|
||||||
|
thumbs.db
|
||||||
11
cross.json
Normal file
11
cross.json
Normal 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
4
src/main.tcross
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
func main(args)
|
||||||
|
{
|
||||||
|
Console.WriteLine("My beautiful app");
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user