Skip to content

Commit

Permalink
πŸš€ chore: add GitHub Actions workflow for releases
Browse files Browse the repository at this point in the history
Sets up a new release workflow triggered by tag pushes.
  • Loading branch information
buu-nguyen committed Feb 25, 2025
1 parent 804e0c3 commit ce1dda4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: πŸš€ Release

on:
push:
tags:
- "release"
- "prerelease"

jobs:
call-python-release:
permissions:
contents: write
uses: thealtoclef/modular-automations/.github/workflows/python-release.yaml@main
with:
prerelease: ${{ github.ref_name == 'prerelease' }}
publish: true

0 comments on commit ce1dda4

Please sign in to comment.