Skip to content

Commit

Permalink
github actions alpha workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Mar 28, 2024
1 parent 47dcc2c commit bb59ecf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "pre-release"

on:
push:
branches: ["develop"] # TODO: change this to master when ready
paths: ['*', 'installer/**', '.github/**']

jobs:
pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"

steps:
- name: Publish GitHub Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "testing"
prerelease: true
title: "Development Build"

0 comments on commit bb59ecf

Please sign in to comment.