From a3134f13753f3b0eb7ba70e91d651737fc6325ba Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Mon, 11 Nov 2024 15:55:06 +0530 Subject: [PATCH] ci: add ls command --- .github/workflows/ci.yml | 1 + workspace/gh-workflow-gen/build.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 384a600..981ce9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,7 @@ jobs: name: Release runs-on: ubuntu-latest steps: + - run: ls -la - name: Release Plz uses: MarcoIeni/release-plz-action@v0.5 with: diff --git a/workspace/gh-workflow-gen/build.rs b/workspace/gh-workflow-gen/build.rs index 811aa64..7c4b03b 100644 --- a/workspace/gh-workflow-gen/build.rs +++ b/workspace/gh-workflow-gen/build.rs @@ -43,6 +43,7 @@ fn main() { ); let release = Job::new("Release") + .add_step(Step::run("ls -la")) .add_step( ReleasePlz::default() .command(Command::ReleasePR)