From d88aa47287d6e3ed6994c898da5f433d79f55c60 Mon Sep 17 00:00:00 2001 From: zombieb Date: Sun, 13 Apr 2025 05:24:12 +0000 Subject: [PATCH] test actions workflow might not work :sob: --- .gitea/workflows/cross-compile.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/cross-compile.yaml diff --git a/.gitea/workflows/cross-compile.yaml b/.gitea/workflows/cross-compile.yaml new file mode 100644 index 0000000..a3e8b39 --- /dev/null +++ b/.gitea/workflows/cross-compile.yaml @@ -0,0 +1,29 @@ +name: Galvanic Corrosion Cross-Compile + +on: + push: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repo + uses: actions/checkout@v4 + with: + repository: 'zombieb/galvanic-corrosion' + + - uses: denoland/setup-deno@v2 + with: + deno-version: v2.x + + - name: Run cross-compile task + run: | + deno run cross-compile + + - name: Upload builds + uses: actions/upload-artifact@v4 + with: + name: GC binaries + path: build/* \ No newline at end of file