Skip to content

Commit

Permalink
Create tagged_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyaaaaaaaaaaaaaaa authored Aug 7, 2024
1 parent 4754870 commit adc174e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tagged_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
# ...
- name: "Build & test"
run: |
echo "done!"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
draft : true

0 comments on commit adc174e

Please sign in to comment.