workflow: dmsbg-100: fix missing env var
All checks were successful
/ build-and-publish (push) Successful in 1h56m42s
All checks were successful
/ build-and-publish (push) Successful in 1h56m42s
This commit is contained in:
parent
ad3bf7d607
commit
fd43fcecc4
1 changed files with 8 additions and 5 deletions
|
@ -26,15 +26,18 @@ jobs:
|
||||||
echo "cache-prefix=staging" >> $GITHUB_ENV
|
echo "cache-prefix=staging" >> $GITHUB_ENV
|
||||||
echo "::set-output name=cache-prefix::staging"
|
echo "::set-output name=cache-prefix::staging"
|
||||||
fi
|
fi
|
||||||
|
echo "TAG_REF=${TAG_REF}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Cache DifOS Build Directory
|
- name: Cache dependencies
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-${{ steps.determine-env.outputs.cache-prefix }}-difos-${{ hashFiles('**/dmsbg100.config') }}-${{ github.sha }}
|
path: |
|
||||||
path: .
|
dl
|
||||||
|
staging_dir/host
|
||||||
|
staging_dir/toolchain-*
|
||||||
|
key: ${{ runner.os }}-build-${{ hashFiles('**/Makefile', '**/*.config') }}-${{ github.sha }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-${{ steps.determine-env.outputs.cache-prefix }}-difos-${{ hashFiles('**/dmsbg100.config') }}
|
${{ runner.os }}-build-${{ hashFiles('**/Makefile', '**/*.config') }}-
|
||||||
${{ runner.os }}-${{ steps.determine-env.outputs.cache-prefix }}-difos-
|
|
||||||
|
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in a new issue