Skip to content

Commit

Permalink
Added Release Pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
LNA-DEV committed Dec 6, 2022
1 parent 67333d1 commit a7ca2fe
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/Changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Changelog
27 changes: 27 additions & 0 deletions .github/workflows/CreateRelease.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CreateRelease

on:
workflow_dispatch:

push:
branches: [main]

env:
VERSION: v0.0.${{ github.run_number }}

jobs:
ReleaseToGithub:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: release
uses: actions/create-release@v1
id: private_docsy_release
with:
draft: false
prerelease: false
release_name: ${{ env.VERSION }}
tag_name: ${{ env.VERSION }}
body_path: ./.github/Changelog.md

0 comments on commit a7ca2fe

Please sign in to comment.