Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/install-cli/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ runs:
with:
ref: ${{ inputs.ref }}

- name: Setup Foundry
if: inputs.no-cache != 'false'
uses: ./.github/actions/setup-foundry

- name: yarn-install-build-without-cache
if: inputs.no-cache != 'false'
shell: bash
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/bytecode-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Check Bytecode Changes

on:
pull_request:
branches:
- '*'
paths:
- 'solidity/**'
- '.github/workflows/bytecode-analysis.yml'
Expand All @@ -17,7 +15,8 @@ on:
jobs:
diff-check:
runs-on: ubuntu-latest

# Skip on changeset version PRs, as bytecode is expected to change with package version bumps
if: github.head_ref != 'changeset-release/main'
steps:
# Checkout the PR branch
- name: Checkout PR branch
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ jobs:
# This job publishes the release to NPM.
publish-release:
needs: cli-install-cross-platform-release-test
if: github.ref == 'refs/heads/main'
permissions:
id-token: write
contents: write
Expand Down Expand Up @@ -180,6 +181,9 @@ jobs:
with:
node-version-file: .nvmrc

- name: Setup Foundry
uses: ./.github/actions/setup-foundry

- name: Install Dependencies
run: yarn install --immutable

Expand Down
Loading