this allows to prove that binaries were produced by GitHub Actions.
21 lines
305 B
YAML
21 lines
305 B
YAML
name: nightly_binaries
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nightly_binaries:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- run: make binaries
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: binaries
|
|
path: binaries
|