We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a8fc5 commit bda5834Copy full SHA for bda5834
1 file changed
.github/workflows/release.yml
@@ -134,12 +134,9 @@ jobs:
134
echo "flet==0.28.3" > requirements.txt
135
136
- name: Update src/__version.py__ in one line using bash
137
- run: |
138
- # ${parameter#word} というbashの機能を使って 'v' を除去
139
- VERSION_NUM="${{ github.ref_name#v }}"
140
-
141
- # 1行でファイルに書き込む
142
- echo "VERSION = \"$VERSION_NUM\"" > src/__version.py__
+ run: |
+ # VERSION環境変数からバージョン番号を取得して、1行でファイルに書き込む
+ echo "VERSION = \"$VERSION\"" > src/__version.py__
143
shell: bash
144
145
- name: Install Linux Build Dependencies
0 commit comments