Merge pull request #1 from piyoppi/add-workflows #4
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: Release-Nightly | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and Release | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --release | |
- name: Upload Release Asset | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os}}-binary | |
path: target/release/chiritori | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download Artifacts (ubuntu-latest-binary) | |
uses: actions/download-artifact@v4 | |
with: | |
name: ubuntu-latest-binary | |
path: target/release/ubuntu-latest | |
- name: Download Artifacts (macos-latest-binary) | |
uses: actions/download-artifact@v4 | |
with: | |
name: macos-latest-binary | |
path: target/release/macos-latest | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: nightly | |
draft: true | |
prerelease: true | |
files: | | |
target/release/ubuntu-latest/* | |
target/release/macos-latest/* |