Nightly Dev Release #172
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
# https://github.com/marketplace/actions/automatic-releases | |
name: Nightly Dev Release | |
on: | |
schedule: | |
# every day at 1:44 an | |
- cron: '44 1 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
pre-release: | |
name: dev Release | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Create Release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "dev3" | |
prerelease: false | |
title: "Development Release" |