2024-06-26 15:58:14 +03:00
|
|
|
name: Gitea Actions Demo
|
|
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
2023-07-30 11:33:52 +03:00
|
|
|
on: [push]
|
2024-06-26 15:58:14 +03:00
|
|
|
|
2023-07-30 11:33:52 +03:00
|
|
|
jobs:
|
2024-06-26 15:58:14 +03:00
|
|
|
Explore-Gitea-Actions:
|
2024-06-26 15:53:21 +03:00
|
|
|
runs-on: ubuntu-22.04
|
2023-07-30 11:33:52 +03:00
|
|
|
steps:
|
2024-06-26 15:58:14 +03:00
|
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
|
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
|
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
|
|
- name: List files in the repository
|
|
|
|
run: |
|
2024-06-26 16:13:20 +03:00
|
|
|
git clone https://git.nuk-svk.ru/svk/projman.git
|
2024-06-26 16:15:32 +03:00
|
|
|
ls ${{ gitea.workspace }}
|
2024-06-26 16:12:16 +03:00
|
|
|
pwd
|
2024-06-26 16:00:54 +03:00
|
|
|
cd debian
|
|
|
|
./build-deb-projman.sh
|
2024-06-26 15:58:14 +03:00
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|