diff --git a/.github/workflows/erc20_bridge_contract.yml b/.github/workflows/erc20_bridge_contract.yml index 399a49da5b..76ca7e32cf 100644 --- a/.github/workflows/erc20_bridge_contract.yml +++ b/.github/workflows/erc20_bridge_contract.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: erc20-bridge-contract: # run all matrix values on PRs, on push run only stable - if: github.event_name == 'pull_request' || matrix.rust == 'stable' + if: ${{ github.event_name == 'pull_request' || matrix.rust == 'stable' }} # since it's going to be compiled into wasm, there's absolutely # no point in running CI on different OS-es runs-on: ubuntu-latest diff --git a/.github/workflows/mixnet_contract.yml b/.github/workflows/mixnet_contract.yml index 7339ebf452..ed6b40be1b 100644 --- a/.github/workflows/mixnet_contract.yml +++ b/.github/workflows/mixnet_contract.yml @@ -11,7 +11,7 @@ on: jobs: mixnet-contract: # run all matrix values on PRs, on push run only stable - if: github.event_name == 'pull_request' || matrix.rust == 'stable + if: ${{ github.event_name == 'pull_request' || matrix.rust == 'stable }} # since it's going to be compiled into wasm, there's absolutely # no point in running CI on different OS-es runs-on: ubuntu-latest diff --git a/.github/workflows/tauri-wallet-types.yml b/.github/workflows/tauri-wallet-types.yml index 10f9c09f2f..c7718b1d6f 100644 --- a/.github/workflows/tauri-wallet-types.yml +++ b/.github/workflows/tauri-wallet-types.yml @@ -11,7 +11,7 @@ on: jobs: tauri-wallet-types: runs-on: ubuntu-latest - if: github.event_name != 'pull_request' + if: ${{ github.event_name != 'pull_request' }} steps: - name: Prepare run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev libatk1.0-dev libgdk-pixbuf2.0-dev libsoup2.4-dev librust-gdk-dev libwebkit2gtk-4.0-dev