added toolti for gauge examples #287
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 | |
on: | |
push: | |
branches: | |
- 'master' | |
workflow_dispatch: | |
jobs: | |
distribute: | |
uses: ./.github/workflows/distribute.yml | |
with: | |
version: nightly | |
artifact: distribution | |
lfscache: true | |
upload: | |
needs: [distribute] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Distribution | |
uses: actions/download-artifact@v3 | |
with: | |
name: distribution | |
- name: Get current date | |
id: date | |
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- name: Upload Artifacts | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
allowUpdates: true | |
artifactErrorsFailBuild: true | |
removeArtifacts: true | |
draft: false | |
prerelease: true | |
commit: 'master' | |
tag: 'nightly' | |
name: 'Drag[en]gine Example Projects Nightly Build' | |
body: | | |
Continuous Nightly Build of Drag[en]gine Example Projects. | |
Created: ${{ steps.date.outputs.date }} | |
Builds are potentially unstable. Use at own risk. | |
artifacts: '*.delga' |