Skip to content

Commit 481efef

Browse files
authored
ci: Fix release workflows (#890)
1 parent 9f2d2d6 commit 481efef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/release-automated.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
release:
99
runs-on: ubuntu-latest
1010
env:
11-
dir: ${{ startsWith(github.ref_name, 'flutter') and 'packages/flutter' or 'packages/dart' }}
11+
dir: ${{ startsWith(github.ref_name, 'flutter') && 'packages/flutter' || 'packages/dart' }}
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v3

Diff for: .github/workflows/release-manual.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
release:
2323
runs-on: ubuntu-latest
2424
env:
25-
dir: ${{ github.event.inputs.package == 'flutter' and 'packages/flutter' or 'packages/dart' }}
25+
dir: ${{ github.event.inputs.package == 'flutter' && 'packages/flutter' || 'packages/dart' }}
2626
steps:
2727
- name: Checkout code
2828
uses: actions/checkout@v3

0 commit comments

Comments
 (0)