Nightly Build #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Build | |
permissions: | |
"contents": "write" | |
# Schedule this workflow to run at midnight every day | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Upload binaries to release | |
uses: taiki-e/upload-rust-binary-action@v1 | |
with: | |
bin: boa | |
# We may be able to provide a custom archive name, but | |
# currently just going with the example default. | |
archive: $bin-$tag-$target | |
ref: nightly | |
token: ${{ secrets.GITHUB_TOKEN }} |