Initial version of Gitea Actions
Some checks failed
xtchain

This commit is contained in:
2023-03-26 20:32:49 +02:00
parent 2da20a4eba
commit 3cd1d2455f
2 changed files with 23 additions and 14 deletions

23
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Builds
on:
push:
branches:
- '**'
jobs:
xtchain:
runs-on: oscw
container:
image: codingworkshop/oscw-runner:latest
steps:
- name: Build
run: CORES=10 ./build-linux.sh
- name: Publish
on:
push:
tags:
- '**'
env:
OSCW_GITHUB_USERNAME: ${{ secrets.OSCW_GITHUB_USERNAME }}
OSCW_GITHUB_PASSWORD: ${{ secrets.OSCW_GITHUB_PASSWORD }}
run: github_publish $OSCW_GITHUB_USERNAME $OSCW_GITHUB_PASSWORD $(ls xtchain-*-linux.tar.zst)