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:05:53 +01:00
|
|
|
runs-on: ubuntu-latest
|
2023-11-25 21:58:08 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-11-25 22:07:53 +01:00
|
|
|
- run: apt update && apt install jq -y
|
2023-11-25 22:11:43 +01:00
|
|
|
- name: Test connection
|
|
|
|
run: curl "https://storage.googleapis.com/flutter_infra_release/releases/releases_linux.json"
|
2023-11-25 21:58:08 +01:00
|
|
|
- uses: subosito/flutter-action@v2
|
|
|
|
with:
|
2023-11-25 22:08:49 +01:00
|
|
|
channel: 'latest'
|
2023-11-25 21:58:08 +01:00
|
|
|
- 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 }}."
|