Skip to content

update documentation #200

update documentation

update documentation #200

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Nightly build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yml
with:
full-release: false
create_release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download Linux Artifact
uses: actions/download-artifact@v4
with:
name: linux-x64
path: ./artifacts/
- name: Download Windows Artifact
uses: actions/download-artifact@v4
with:
name: win-x64
path: ./artifacts/
- name: Remove Old Release
env:
GH_TOKEN: ${{ github.token }}
run: gh release delete nightly --cleanup-tag -y
- name: Create Release
uses: softprops/action-gh-release@v2
id: create_release
with:
draft: false
prerelease: true
name: "Nightly"
tag_name: "nightly"
make_latest: false
body: Latest in-development build.
files: |
./artifacts/rained_linux-x64.tar.gz
./artifacts/rained_win-x64.zip