Skip to content

Commit

Permalink
Add Prepare Releases workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpadberg committed Feb 16, 2025
1 parent 08490dd commit 2b4b6f4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/prepare_releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: "prepare-release"

on:
push:
branches:
- "main"
workflow_dispatch:

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

steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Next Release"

0 comments on commit 2b4b6f4

Please sign in to comment.