From 263c3fac5e50e5ed4df90ee5b27145be6fdc055c Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 26 Apr 2025 22:01:30 +0200 Subject: [PATCH] Reorders steps in GitHub Actions workflow to ensure environment variables are prepared before checking out the repository --- .github/workflows/build-deb.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-deb.yml b/.github/workflows/build-deb.yml index 32980dc..9144322 100644 --- a/.github/workflows/build-deb.yml +++ b/.github/workflows/build-deb.yml @@ -8,14 +8,14 @@ jobs: runs-on: ubuntu-latest steps: - - name: 🛒 Checkout Repository - uses: actions/checkout@v4 - - name: ⚙️ Prepare Environment Variables run: | echo "AGENT_TOOLSDIRECTORY=/home/runner/toolcache" >> $GITHUB_ENV mkdir -p /home/runner/toolcache + - name: 🛒 Checkout Repository + uses: actions/checkout@v4 + - name: 🐍 Setup Python uses: actions/setup-python@v5 with: