workflow: dmsbg-100: fix missing env var
All checks were successful
/ build-and-publish (push) Successful in 1h56m42s

This commit is contained in:
hayzamjs 2024-03-07 16:42:27 +05:30
parent ad3bf7d607
commit fd43fcecc4
Signed by: hayzam
GPG key ID: 13B4C5B544B53947

View file

@ -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