mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-09 19:57:26 +01:00
15 lines
275 B
YAML
15 lines
275 B
YAML
name: Build And Test
|
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: ls
|
|
publish:
|
|
runs-on: cth-ubuntu-latest
|
|
needs: build
|
|
if: gitea.ref == 'refs/heads/main'
|
|
steps:
|
|
- run: ls |