File tree 2 files changed +20
-8
lines changed 2 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,16 @@ jobs:
71
71
REPO : ${{ github.repository }}
72
72
73
73
- name : Create Tag
74
- uses : laputansoft/github-tag-action@v4.6
74
+ run : |
75
+ set -x
76
+
77
+ git tag "conda-${{ needs.version_check.outputs.PCAPKIT_VERSION }}+0" -m"Conda Build"
78
+
79
+ - name : Push Changes
80
+ uses : ad-m/github-push-action@master
75
81
with :
76
82
github_token : ${{ secrets.GITHUB_TOKEN }}
77
- tag : " conda-${{ needs.version_check.outputs.PCAPKIT_VERSION }}+0 "
83
+ tags : true
78
84
79
85
- name : Create Release
80
86
id : create_release
@@ -103,12 +109,12 @@ jobs:
103
109
strategy :
104
110
matrix :
105
111
python-version :
106
- - " 3.7"
112
+ # - "3.7"
107
113
- " 3.8"
108
114
- " 3.9"
109
115
- " 3.10"
110
116
- " 3.11"
111
- - " pypy3.7"
117
+ # - "pypy3.7"
112
118
- " pypy3.8"
113
119
- " pypy3.9"
114
120
steps :
@@ -181,7 +187,7 @@ jobs:
181
187
steps :
182
188
- uses : actions/checkout@v3
183
189
with :
184
- ref : v ${{ needs.version_check.outputs.PCAPKIT_VERSION }}
190
+ ref : conda- ${{ needs.version_check.outputs.PCAPKIT_VERSION }}+0
185
191
fetch-depth : 0
186
192
187
193
- uses : actions/setup-python@v4
Original file line number Diff line number Diff line change @@ -100,11 +100,16 @@ jobs:
100
100
echo "PCAPKIT_BUILD=$(cat conda/build)" >> $GITHUB_OUTPUT
101
101
102
102
- name : Create Tag
103
- if : steps.verify-changed-files.outputs.files_changed == 'true'
104
- uses : laputansoft/github-tag-action@v4.6
103
+ run : |
104
+ set -x
105
+
106
+ git tag "conda-${{ steps.get_version.outputs.PCAPKIT_VERSION }}+${{ steps.get_version.outputs.PCAPKIT_BUILD }}" -m"Conda Build"
107
+
108
+ - name : Push Changes
109
+ uses : ad-m/github-push-action@master
105
110
with :
106
111
github_token : ${{ secrets.GITHUB_TOKEN }}
107
- tag : " conda-${{ steps.get_version.outputs.PCAPKIT_VERSION }}+${{ steps.get_version.outputs.PCAPKIT_BUILD }} "
112
+ tags : true
108
113
109
114
outputs :
110
115
CONDA_CHANGED : ${{ steps.verify-changed-files.outputs.files_changed }}
@@ -127,6 +132,7 @@ jobs:
127
132
steps :
128
133
- uses : actions/checkout@v3
129
134
with :
135
+ ref : conda-${{ needs.conda-update.outputs.PCAPKIT_VERSION }}+${{ needs.conda-update.outputs.PCAPKIT_BUILD }}
130
136
fetch-depth : 0
131
137
132
138
- uses : actions/setup-python@v4
You can’t perform that action at this time.
0 commit comments