From e8b4bb981bff58b2223261c8b51e232761f9747f Mon Sep 17 00:00:00 2001 From: Leo Cavalcante Date: Fri, 22 Mar 2024 18:38:34 -0300 Subject: [PATCH] fix(ci): Missing checkout step --- .github/workflows/features.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/features.yml b/.github/workflows/features.yml index 12e87bc..9ee94e5 100644 --- a/.github/workflows/features.yml +++ b/.github/workflows/features.yml @@ -5,10 +5,11 @@ on: - main jobs: - build: + features: runs-on: ubuntu-latest steps: - - name: "Publish Features" + - uses: actions/checkout@v3 + - name: Features uses: devcontainers/action@v1 with: publish-features: "true"