Files
kata-containers/.github/workflows/ci-nightly.yaml
Fabiano Fidêncio 86904909aa gha: ci: Avoid using env also in the ci-nightly and payload-after-push
The latter workflow is breaking as it doesn't recognise ${GITHUB_REF},
the former would most likely break as well, but it didn't get triggered
yet.

The error we're facing is:
```
Determining the checkout info
  /usr/bin/git branch --list --remote origin/${GITHUB_REF}
  /usr/bin/git tag --list ${GITHUB_REF}
  Error: A branch or tag with the name '${GITHUB_REF}' could not be found
```

Fixes: #7247

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
2023-07-07 14:46:30 +02:00

14 lines
288 B
YAML

name: Kata Containers Nightly CI
on:
schedule:
- cron: '0 0 * * *'
jobs:
kata-containers-ci-on-push:
uses: ./.github/workflows/ci.yaml
with:
commit-hash: ${{ github.ref }}
pr-number: ${{ github.ref }}
tag: ${{ github.ref }}-nightly
secrets: inherit