-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (37 loc) · 1.26 KB
/
Publish_GitHub_Release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# ✍️ Description:
# This workflow will be triggered automatically when a tag is pushed to the repo.
# It will create a new github release with the new app version and the release notes.
# 🚨 GTHUB SECRETS REQUIRED: None
name: New GitHub Release
on:
push:
# only release a new pip package if the commit it tagged ex.v1.0.3 or v1.2.0dev1
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+a[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+b[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+dev[0-9]+"
workflow_dispatch:
jobs:
build:
name: New GitHub Release
runs-on: "ubuntu-latest"
permissions:
contents: write
defaults:
run:
# Set the default shell to the bash login shell. Use a login shell to ensure a complete environment initialization, aligning with local development setups and loading necessary profiles and paths.
shell: bash -l {0}
steps:
- name: 📦 Checkout project repo
uses: actions/checkout@v3
with:
# Load the last 1 commits
fetch-depth: 0
- name: 🏃Create A Draft Github Release
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
draft: false
makeLatest: false