2024-12-04 19:51:32 +03:00
|
|
|
name: Github Push back to gitea
|
2024-12-04 19:49:35 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
|
|
|
|
volumes:
|
|
|
|
- /proc:/proc
|
|
|
|
options: --privileged -it
|
|
|
|
|
|
|
|
steps:
|
2024-12-04 19:53:11 +03:00
|
|
|
- uses: actions/checkout@v3
|
2024-12-04 19:49:35 +03:00
|
|
|
|
2024-12-04 19:51:32 +03:00
|
|
|
- name: Run
|
2024-12-04 19:53:11 +03:00
|
|
|
run: ./.github/github_pushback.sh
|