Clear file

This commit is contained in:
2022-05-30 14:52:17 +02:00
parent 428dbbe004
commit 3e5c19cdb3
2 changed files with 0 additions and 36 deletions
-29
View File
@@ -1,29 +0,0 @@
name: Create base release
on:
workflow_call:
inputs:
bump_version:
description: 'The bump release'
type: string
required: true
default: 'patch'
jobs:
init-release-data:
name: Generate data about the release
runs-on: ubuntu-latest
steps:
- name: Debug Data
run: |
echo "show the bump config"
echo ${{ inputs.bump_version }}
- name: Setup a new Semantic Version
id: new_semantic_setup
if: ${{ github.event.action == 'opened' }}
uses: zwaldowski/semver-release-action@v2
with:
bump: ${{ inputs.bump_version }}
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true
-7
View File
@@ -13,13 +13,6 @@ jobs:
name: Initialize all data about the package
uses: Moderlab-Production/BlenderTemplate/.github/workflows/initialize_data.yml@main
prepare-first-release:
name: Make the pre-release
needs: init-release-data
uses: Moderlab-Production/BlenderTemplate/.github/workflows/generate_release.yml@main
with:
bump_version: ${{ needs.init-release-data.outputs.version_type }}
unit-test:
uses: Moderlab-Production/BlenderTemplate/.github/workflows/unit_test.yml@main