2023-11-22 14:24:32 +01:00
|
|
|
name: Gitea Actions Demo
|
|
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2023-11-25 21:58:08 +01:00
|
|
|
flutter:
|
2023-11-25 22:45:45 +01:00
|
|
|
runs-on: default
|
2023-11-25 22:44:21 +01:00
|
|
|
container:
|
2023-11-25 22:48:09 +01:00
|
|
|
image: ghcr.io/cirruslabs/flutter:3.16.0
|
2023-11-25 21:58:08 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: flutter --version
|
2023-11-22 14:24:32 +01:00
|
|
|
Explore-Gitea-Actions:
|
2023-11-25 20:16:15 +01:00
|
|
|
runs-on: ubuntu-latest
|
2023-11-22 14:24:32 +01:00
|
|
|
steps:
|
2023-11-23 14:36:37 +01:00
|
|
|
- run: cat /etc/os-release
|
2023-11-22 14:24:32 +01: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: Check out repository code
|
2023-11-25 21:54:11 +01:00
|
|
|
uses: actions/checkout@v4
|
2023-11-25 21:14:08 +01:00
|
|
|
with:
|
|
|
|
path: 'git'
|
2023-11-22 14:29:47 +01:00
|
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner. Some change"
|
2023-11-22 14:24:32 +01:00
|
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
|
|
- name: List files in the repository
|
|
|
|
run: |
|
|
|
|
ls ${{ gitea.workspace }}
|
2023-11-03 12:38:50 +01:00
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|