GitHub Actions: fix up
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user