Files
sandbox/.gitea/workflows/demo.yaml
Blitblank f9689bd2c7
Some checks failed
Gitea Actions Demo / build (push) Failing after 0s
Gitea Actions Demo / execute (push) Failing after 1s
maybe I need to specify the instance?
2026-02-20 20:56:25 -06:00

39 lines
745 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
build:
runs-on: debian12
container:
image: git.vxbard.net/homeburger/bard-cpp-build:1.0
steps:
- name: clone
uses: actions/checkout@v3
- name: build
run: |
g++ -o app main.cpp
- name: upload
uses: actions/upload-artifact@v3
with:
name: build-artifact
path: app
execute:
runs-on: debian12
container:
image: cpp-builder-a
steps:
- name: download
uses: actions/download-artifact@v3
with:
name: build-artifact
- name: execute
run: |
chmod +x app
./app