Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
rootphantomer authored Jul 7, 2024
1 parent 0b448f1 commit bd82568
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: push_release

permissions:
contents: write

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
# ...
- name: Checkout Code
uses: actions/checkout@master

- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false

0 comments on commit bd82568

Please sign in to comment.