Skip to content

Commit

Permalink
📝 Chore(Actions): Try to use checkout to run git command with defau…
Browse files Browse the repository at this point in the history
…lt token.
  • Loading branch information
Dynesshely committed Feb 25, 2024
1 parent cc35ae5 commit b3f8fa1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-loaders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
dotnet-version: |
8.0.x
- name: Setup Sub-submodules in `KitX SDK`
working-directory: "KitX SDK"
run: |
- uses: actions/checkout@v4
- run: |
cd "KitX SDK"
git submodule update --init --recursive
- name: Build Loaders
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
dotnet-version: |
8.0.x
- name: Setup Sub-submodules in `KitX SDK`
working-directory: "KitX SDK"
run: |
- uses: actions/checkout@v4
- run: |
cd "KitX SDK"
git submodule update --init --recursive
- name: Build Plugins
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
dotnet-version: |
8.0.x
- name: Setup Sub-submodules in `KitX Standard`
working-directory: "KitX Standard"
run: |
- uses: actions/checkout@v4
- run: |
cd "KitX Standard"
git submodule update --init --recursive
- name: Build Contracts
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
dotnet-version: |
8.0.x
- name: Setup Sub-submodules in `KitX Standard`
working-directory: "KitX Standard"
run: |
- uses: actions/checkout@v4
- run: |
cd "KitX Standard"
git submodule update --init --recursive
- name: Setup Sub-submodules in `KitX SDK`
working-directory: "KitX SDK"
run: |
- uses: actions/checkout@v4
- run: |
cd "KitX SDK"
git submodule update --init --recursive
- name: Add to GitHub Repo
Expand Down

0 comments on commit b3f8fa1

Please sign in to comment.