-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexamples-encrypted-notes-dapp.yml
More file actions
67 lines (67 loc) · 2.11 KB
/
examples-encrypted-notes-dapp.yml
File metadata and controls
67 lines (67 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: examples-encrypted-notes-dapp
on:
push:
branches:
- main
pull_request:
paths:
- examples/encrypted_notes_dapp_vetkd/**
- backend/**
- Cargo.toml
- Cargo.lock
- frontend/ic_vetkeys/**
- package.json
- package-lock.json
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/examples-encrypted-notes-dapp.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
examples-encrypted-notes-dapp-rust-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Deploy Encrypted Notes Dapp VetKD Darwin
run: |
set -eExuo pipefail
cd examples/encrypted_notes_dapp_vetkd/rust
dfx start --background && dfx deploy
examples-encrypted-notes-dapp-rust-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Deploy Encrypted Notes Dapp VetKD Linux
run: |
set -eExuo pipefail
cd examples/encrypted_notes_dapp_vetkd/rust
dfx start --background && dfx deploy
examples-encrypted-notes-dapp-motoko-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Deploy Encrypted Notes Dapp VetKD Darwin
run: |
set -eExuo pipefail
cd examples/encrypted_notes_dapp_vetkd/motoko
dfx start --background && dfx deploy
examples-encrypted-notes-dapp-motoko-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Deploy Encrypted Notes Dapp VetKD Linux
run: |
set -eExuo pipefail
cd examples/encrypted_notes_dapp_vetkd/motoko
dfx start --background && dfx deploy