Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
ci(schedule-run): fix wrong variable which lead fail to run
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Jan 16, 2025
1 parent 6b13b41 commit 1ae85c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/schedule-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
APT_PKGS_PATH: '.github/apt_pkgs.txt'
APT_PKGS_PATH: '${{ github.workspace }}/.github/apt_pkgs.txt'

jobs:
run:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Get required apt packages
id: get-pkgs
shell: bash
run: echo "pkgs=$( tr '\n' ' ' <'{{ env.APT_PKGS_PATH }}' )" > "$GITHUB_OUTPUT"
run: echo "pkgs=$( tr '\n' ' ' <'${{ env.APT_PKGS_PATH }}' )" > "$GITHUB_OUTPUT"

- uses: awalsh128/cache-apt-pkgs-action@v1
with:
Expand Down

0 comments on commit 1ae85c8

Please sign in to comment.