We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ada03b + e50bd73 commit f9810f6Copy full SHA for f9810f6
.github/workflows/release.yml
@@ -200,6 +200,12 @@ jobs:
200
TAG: ${{ github.ref_name }}
201
202
steps:
203
+ - name: Checkout repository
204
+ uses: actions/checkout@v4
205
+ with:
206
+ ref: ${{ env.TAG }}
207
+ fetch-depth: 0
208
+
209
- name: Download asset build artifact
210
uses: actions/download-artifact@v4
211
with:
@@ -229,7 +235,7 @@ jobs:
229
235
env:
230
236
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
231
237
run: |
232
- RELEASE_NOTES_FILE="${ASSET_DIR}/ja/source/intro/ChangeLog/${TAG:0:4}/${TAG}.rst"
238
+ RELEASE_NOTES_FILE="${GITHUB_WORKSPACE}/ja/source/intro/ChangeLog/${TAG:0:4}/${TAG}.rst"
233
239
if [ -f "$RELEASE_NOTES_FILE" ]; then
234
240
gh release create ${TAG} \
241
--title "Ver. ${TAG}" \
0 commit comments