32
32
# description: "Generated version of the image"
33
33
# value: ${{ jobs.prebuild-job.outputs.version }}
34
34
secrets :
35
- pypi-user :
36
- required : true
37
- description : ' TODO'
35
+ # pypi-user:
36
+ # required: true
37
+ # description: 'TODO'
38
38
pypi-password :
39
39
required : true
40
40
description : ' TODO'
@@ -45,49 +45,42 @@ jobs:
45
45
name : Prebuild Job
46
46
runs-on : ${{ inputs.runsOn }}
47
47
steps :
48
- - name : Checkout
49
- uses : actions/checkout@v4
50
48
- uses : th2-net/.github/.github/workflows/python-get-version.yml@python-workflow # FIXME: change to main
51
49
id : get-version
52
- with : # TODO
50
+ with :
53
51
runsOn : ${{ inputs.runsOn }}
54
- - name : Build custom package version
52
+ - name : Build custom package_version
55
53
id : release-ver
56
54
run : echo ::set-output name=custom-version::"${{ steps.get-version.outputs.version }}.dev${{ github.run_id }}"
57
- - name : Show package version
55
+ - name : Show package_version
58
56
run : echo ${{ steps.release-ver.outputs.custom-version }}
59
57
outputs :
60
58
version : ${{ steps.get-version.outputs.version }}
61
59
custom-version : ${{ steps.release-ver.outputs.custom-version }}
62
60
63
- matrix-test :
64
- name : Matrix test Job
65
- uses : th2-net/.github/.github/workflows/compound-python-matrix-test.yml@python-workflow # FIXME: change to main
66
- with : # TODO:
67
- runsOn : ${{ inputs.runsOn }}
61
+ # matrix-test:
62
+ # name: Matrix test Job
63
+ # uses: th2-net/.github/.github/workflows/compound-python-matrix-test.yml@python-workflow # FIXME: change to main
64
+ # with: # TODO:
65
+ # runsOn: ${{ inputs.runsOn }}
68
66
69
- vulnarbility-scan :
70
- if : inputs.scanner-enabled
71
- uses : th2-net/.github/.github/workflows/python-scan.yml@python-workflow # FIXME: change to main
72
- # with: TODO
73
- # secrets: TODO
74
-
75
- license-check :
76
- if : inputs.scanner-enabled
77
- uses : th2-net/.github/.github/workflows/license_check.yml@python-workflow # FIXME: change to main
78
- needs : [prebuild-job]
79
- with :
80
- version : ${{ needs.prebuild-job.outputs.custom-version }}
67
+ # vulnarbility-scan:
68
+ # if: inputs.scanner-enabled
69
+ # uses: th2-net/.github/.github/workflows/python-scan.yml@python-workflow # FIXME: change to main
70
+ # # with: TODO
71
+ # # secrets: TODO
81
72
82
- set-version :
83
- name : Set custom version
84
- if : inputs.strict-scanner && success() || !inputs.strict-scanner
85
- needs : [prebuild-job]
86
- uses : th2-net/.github/.github/workflows/python-set-version.yml@python-workflow # FIXME: change to main
87
- with :
88
- version : ${{ needs.prebuild-job.outputs.custom-version }}
73
+ # license-check:
74
+ # if: inputs.scanner-enabled
75
+ # uses: th2-net/.github/.github/workflows/license_check.yml@python-workflow # FIXME: change to main
76
+ # needs: [prebuild-job]
77
+ # with:
78
+ # version: ${{ needs.prebuild-job.outputs.custom-version }}
89
79
90
- pypi-publish :
91
- name : Publish to PyPi
92
- needs : [set-version]
93
- uses : th2-net/.github/.github/workflows/python-pypi-publish.yml@python-workflow # FIXME: change to main
80
+ # pypi-publish:
81
+ # name: Publish to PyPi
82
+ # needs: [prebuild-job]
83
+ # if: inputs.strict-scanner && success() || !inputs.strict-scanner
84
+ # uses: th2-net/.github/.github/workflows/python-pypi-publish.yml@python-workflow # FIXME: change to main
85
+ # with:
86
+ # version: ${{ needs.prebuild-job.outputs.custom-version }}
0 commit comments