Skip to content

Commit e208fab

Browse files
authored
Merge pull request #1525 from input-output-hk/djo/1520/fix-release-action
Fix `update_release` action version in CI
2 parents c65486a + f32b307 commit e208fab

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,8 @@ jobs:
551551
files: package/*
552552

553553
- name: Update unstable release body with release notes addon
554-
uses: tubone24/update_release@v1
554+
# specific version since this action does not support giving only the major number
555+
uses: tubone24/[email protected]
555556
env:
556557
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
557558
TAG_NAME: unstable

.github/workflows/pre-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676
files: package/*
7777

7878
- name: Update release body with release notes addon
79-
uses: tubone24/update_release@v1
79+
# specific version since this action does not support giving only the major number
80+
uses: tubone24/[email protected]
8081
env:
8182
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8283
TAG_NAME: ${{ github.ref_name }}

0 commit comments

Comments
 (0)