Clear file
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user