GitHub Actions: fix up

This commit is contained in:
Mark Sinclair
2021-11-10 14:44:52 +00:00
parent d22914c4dc
commit 0e4f833715
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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