@ayasofyazilim/saas 0.0.71 → 0.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Release & Update package
|
|
2
|
+
run-name: ${{ github.actor }} is is updating ${{ github.event.inputs.saas-name }} and Releasing the project 🚀
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
release-type:
|
|
7
|
+
description: 'Release type (one of): patch, minor, major, prepatch, preminor, premajor, prerelease'
|
|
8
|
+
required: true
|
|
9
|
+
default: 'patch'
|
|
10
|
+
type: choice
|
|
11
|
+
options:
|
|
12
|
+
- patch
|
|
13
|
+
- minor
|
|
14
|
+
- major
|
|
15
|
+
- prepatch
|
|
16
|
+
- preminor
|
|
17
|
+
- premajor
|
|
18
|
+
- prerelease
|
|
19
|
+
saas-name:
|
|
20
|
+
description: 'The name of service to update and commit, e.g. "all" or "SaaS,Tag"'
|
|
21
|
+
default: 'all'
|
|
22
|
+
required: true
|
|
23
|
+
jobs:
|
|
24
|
+
update:
|
|
25
|
+
uses: ayasofyazilim-clomerce/ayasofyazilim-saas/.github/workflows/update.yaml@main
|
|
26
|
+
with:
|
|
27
|
+
saas-name: ${{ github.event.inputs.saas-name }}
|
|
28
|
+
release:
|
|
29
|
+
uses: ayasofyazilim-clomerce/ayasofyazilim-saas/.github/workflows/release.yaml@main
|
|
30
|
+
needs: update
|
|
31
|
+
secrets: inherit
|
|
32
|
+
with:
|
|
33
|
+
release-type: ${{ github.event.inputs.release-type }}
|
|
34
|
+
|