Skip to content

Commit cb85c12

Browse files
committed
chore: fix GHA inputs
1 parent d480574 commit cb85c12

7 files changed

+11
-6
lines changed

.github/actions/prepare-build/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ runs:
3333
with:
3434
ref: ${{ inputs.ref }}
3535
fetch-depth: 1
36-
progress: false
36+
show-progress: false
3737
run: pnpm install
3838
run: ${{ inputs.build }} --output-path ./dist-${{ inputs.ref }}${{ inputs.ext }}

.github/actions/setup/action.yml

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ inputs:
4242
description: Ref to Setup
4343
required: false
4444
default: ${{ github.sha }}
45+
repo-token:
46+
description: Token to use for TurboRepo
47+
required: false
48+
default: ''
4549

4650
runs:
4751
using: composite

.github/workflows/release_promote-lts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
fetch-depth: 1
3838
fetch-tags: true
39-
progress: false
39+
show-progress: false
4040
token: ${{ secrets.GH_DEPLOY_TOKEN }}
4141
- uses: ./.github/actions/setup
4242
with:

.github/workflows/release_publish-beta.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
5050
with:
5151
fetch-tags: true
52-
progress: false
52+
show-progress: false
5353
token: ${{ secrets.GH_DEPLOY_TOKEN }}
5454
fetch-depth: 3
5555
ref: beta

.github/workflows/release_publish-canary.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
fetch-depth: 1
4040
fetch-tags: true
41-
progress: false
41+
show-progress: false
4242
token: ${{ secrets.GH_DEPLOY_TOKEN }}
4343
ref: main
4444
- name: Check should run if HEAD is untagged

.github/workflows/release_publish-lts.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ jobs:
3737
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3838
with:
3939
fetch-tags: true
40-
progress: false
40+
show-progress: false
4141
token: ${{ secrets.GH_DEPLOY_TOKEN }}
4242
fetch-depth: 3
4343
ref: ${{ github.event.inputs.source-branch }}
44+
- run: git fetch origin --tags --depth=1
4445
- name: Make sure git user is setup
4546
run: |
4647
git config --local user.email ${{ secrets.GH_DEPLOY_EMAIL }}

.github/workflows/release_publish-stable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
6262
with:
6363
fetch-tags: true
64-
progress: false
64+
show-progress: false
6565
token: ${{ secrets.GH_DEPLOY_TOKEN }}
6666
fetch-depth: 3
6767
ref: release

0 commit comments

Comments
 (0)