.dsc to .ritc conversion #358
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: Create Nightly Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
branches: | |
- Main | |
pull_request: | |
branches: | |
- Main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Nightly Release | |
run: | | |
sudo apt install libfuse2 | |
make gitbuilds git_sha=${{ github.sha }} | |
- uses: andelf/nightly-release@main | |
with: | |
tag_name: nightly_release | |
name: "Rit Nightly Release $$ (commit: ${{ github.sha }})" | |
prerelease: true | |
body: "This is a nightly release. May or may not work." | |
files: build/dist/* | |