Skip to content

Commit 01c8071

Browse files
authored
Fix op-rbuilder release action (flashbots#541)
## 📝 Summary We removed optimism feature flag, fixing it in the action ## 💡 Motivation and Context <!--- (Optional) Why is this change required? What problem does it solve? Remove this section if not applicable. --> --- ## ✅ I have completed the following steps: * [ ] Run `make lint` * [ ] Run `make test` * [ ] Added tests (if applicable)
1 parent 2e1c88a commit 01c8071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-op.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
# - target: aarch64-apple-darwin
7878
# runner: warp-macos-14-arm64-6x
7979
features:
80-
- ${{ github.event.inputs.features }}${{ github.event.inputs.features && ',' }}optimism
80+
- ${{ github.event.inputs.features || '' }}
8181

8282
steps:
8383
- name: Install dependencies
@@ -162,7 +162,7 @@ jobs:
162162
strategy:
163163
matrix:
164164
features:
165-
- ${{ github.event.inputs.features }}${{ github.event.inputs.features && ',' }}optimism
165+
- ${{ github.event.inputs.features || '' }}
166166
steps:
167167
- name: checkout sources
168168
uses: actions/checkout@v4

0 commit comments

Comments
 (0)