Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

Commit

Permalink
add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MGTheTrain committed Apr 21, 2024
1 parent d03bc0d commit b631297
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release

on:
push:
branches:
- main

jobs:
create_git_tags_from_version_file_job:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create git tag from version file
uses: MGTheTrain/public-github-actions/.github/actions/create-git-tag-from-version-file@main
with:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit b631297

Please sign in to comment.