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-27 12:41:34 +03:00
|
|
|
runs-on: tcl-tk-builder
|
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 }}."
|
2024-06-27 12:45:22 +03:00
|
|
|
- run: echo "${{ vars.url }}${{ gitea.repository }}"
|
2024-06-27 12:43:20 +03:00
|
|
|
- name: Build the packages
|
2024-06-26 15:58:14 +03:00
|
|
|
run: |
|
2024-06-27 12:47:05 +03:00
|
|
|
git clone ${{ vars.url }}${{ gitea.repository }}
|
2024-06-26 16:12:16 +03:00
|
|
|
pwd
|
2024-06-27 12:41:34 +03:00
|
|
|
cd projman/debian
|
|
|
|
./build-deb-projman.sh"
|
2024-06-26 15:58:14 +03:00
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|