From ec9e5434e5b30469f216cba8000cae89a7b67c01 Mon Sep 17 00:00:00 2001 From: ange Date: Sun, 2 Feb 2025 01:10:23 +0000 Subject: [PATCH] fix: action with keyword missing --- .gitea/workflows/apk.yaml | 5 +++-- .gitea/workflows/website.yaml | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/apk.yaml b/.gitea/workflows/apk.yaml index f5aedcc..e1015f6 100644 --- a/.gitea/workflows/apk.yaml +++ b/.gitea/workflows/apk.yaml @@ -7,8 +7,9 @@ jobs: build: runs-on: debian steps: - - uses: actions/checkout@main - subpath: dialer/ + - uses: actions/checkout@v1 + with: + subpath: dialer/ - uses: icing/flutter@test - uses: actions/upload-artifact@v1 with: diff --git a/.gitea/workflows/website.yaml b/.gitea/workflows/website.yaml index 5bd3b71..7742a81 100644 --- a/.gitea/workflows/website.yaml +++ b/.gitea/workflows/website.yaml @@ -8,7 +8,8 @@ jobs: runs-on: debian steps: - uses: actions/checkout@v1 - subpath: website/ + with: + subpath: website/ - name: setup env run: | . ./.env || true