-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from WalletConnect/feat/add_github_submodule_se…
…cret feat: adding support for checkout private submodules
- Loading branch information
Showing
6 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
submodules: recursive | ||
|
||
- name: Install Rust ${{ inputs.rust-toolchain }} | ||
uses: WalletConnect/actions-rs/[email protected] | ||
|
@@ -96,7 +99,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
with: | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
submodules: recursive | ||
- name: Install Rust ${{ inputs.rust-toolchain-formatting }} | ||
uses: WalletConnect/actions-rs/[email protected] | ||
with: | ||
|
@@ -120,6 +125,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
submodules: recursive | ||
|
||
- name: Install Rust ${{ inputs.rust-toolchain }} | ||
uses: WalletConnect/actions-rs/[email protected] | ||
|
@@ -155,6 +163,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
submodules: recursive | ||
|
||
- name: Parse and export environment variables | ||
run: | | ||
|
@@ -194,6 +205,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
submodules: recursive | ||
|
||
- name: Install Rust ${{ inputs.rust-toolchain-udeps }} | ||
uses: WalletConnect/actions-rs/[email protected] | ||
|
@@ -217,6 +231,9 @@ jobs: | |
runs-on: ${{ inputs.run-label }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
submodules: recursive | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
command: check license |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }} | ||
|
||
- name: "Install Rust ${{ inputs.version }}" | ||
uses: WalletConnect/actions-rs/[email protected] | ||
|