Skip to content

Commit cdbd731

Browse files
futurechimpDrazen Urch
authored and
Drazen Urch
committed
Changed all workflow references to nym-wallet
1 parent 5cb4949 commit cdbd731

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ Cargo.* @durch @futurechimp @jstuczyn @neacsu
3636

3737
# Explorer and wallet should probably get looked by the product team
3838
/explorer/ @nymtech/product
39-
/tauri-wallet/ @nymtech/product
39+
/nym-wallet/ @nymtech/product
4040
/wallet-web/ @nymtech/product

.github/workflows/nym_wallet.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: Webdriverio tests for nym wallet
22

3-
on:
4-
push:
3+
on:
4+
push:
55
paths:
6-
- 'tauri-wallet/**'
7-
6+
- "nym-wallet/**"
7+
88
defaults:
99
run:
10-
working-directory: tauri-wallet
10+
working-directory: nym-wallet
1111

1212
jobs:
1313
test:
1414
name: wallet tests
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2
1818

@@ -30,41 +30,41 @@ jobs:
3030
- name: Install minimal stable
3131
uses: actions-rs/toolchain@v1
3232
with:
33-
profile: minimal
34-
toolchain: stable
33+
profile: minimal
34+
toolchain: stable
3535

3636
- name: Node v16
3737
uses: actions/setup-node@v1
3838
with:
3939
node-version: 16.x
4040

4141
- name: Install yarn for building application
42-
run: yarn install
42+
run: yarn install
4343

4444
- name: Build application
4545
run: yarn run webpack:build & yarn run tauri:build
46-
46+
4747
- name: Check binary exists
4848
run: |
49-
cd target/release/
50-
(test -f nym-wallet && echo nym binary exists) || echo wallet does not exist
49+
cd target/release/
50+
(test -f nym-wallet && echo nym binary exists) || echo wallet does not exist
5151
5252
- name: Install dependencies
5353
run: yarn install
54-
working-directory: tauri-wallet/webdriver
54+
working-directory: nym-wallet/webdriver
5555

5656
- name: Remove existing user datafile
5757
uses: JesseTG/[email protected]
5858
with:
59-
path: tauri-wallet/webdriver/common/data/user-data.json
59+
path: nym-wallet/webdriver/common/data/user-data.json
6060

6161
- name: Create user data json file
6262
id: create-json
6363
uses: jsdaniell/[email protected]
6464
with:
65-
name: "user-data.json"
66-
json: ${{ secrets.WALLET_USERDATA }}
67-
dir: 'tauri-wallet/webdriver/common/data/'
65+
name: "user-data.json"
66+
json: ${{ secrets.WALLET_USERDATA }}
67+
dir: "nym-wallet/webdriver/common/data/"
6868

6969
- name: Install tauri-driver
7070
uses: actions-rs/cargo@v1
@@ -74,4 +74,4 @@ jobs:
7474

7575
- name: Launch tests
7676
run: xvfb-run yarn test:runall
77-
working-directory: tauri-wallet/webdriver
77+
working-directory: nym-wallet/webdriver

.github/workflows/tauri-wallet-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish Tauri Wallet
22
on:
33
push:
44
tags:
5-
- tauri-wallet-*
5+
- nym-wallet-*
66

77
jobs:
88
build:

.github/workflows/tauri-wallet-types.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Generate TS types
33
on:
44
push:
55
paths-ignore:
6-
- 'explorer/**'
6+
- "explorer/**"
77
pull_request:
88
paths-ignore:
9-
- 'explorer/**'
9+
- "explorer/**"
1010

1111
jobs:
12-
tauri-wallet-types:
12+
nym-wallet-types:
1313
runs-on: ubuntu-latest
1414
if: ${{ github.event_name != 'pull_request' }}
1515
steps:
@@ -20,10 +20,10 @@ jobs:
2020
with:
2121
toolchain: stable
2222
- name: Generate TS
23-
run: cd tauri-wallet/src-tauri && cargo test
23+
run: cd nym-wallet/src-tauri && cargo test
2424
- uses: EndBug/[email protected] # https://github.com/marketplace/actions/add-commit
2525
with:
26-
add: '["tauri-wallet"]'
27-
message: '[ci skip] Generate TS types'
26+
add: '["nym-wallet"]'
27+
message: "[ci skip] Generate TS types"
2828
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)