-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(alpha): adding the action to pull azure repo into github actions.
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,7 @@ jobs: | |
atlas: ${{ steps.delta.outputs.atlas_any_changed }} | ||
rustapiprofile: ${{ steps.delta.outputs.rustapiprofile_any_changed }} | ||
expolcagents: ${{ steps.delta.outputs.expolcagents_any_changed }} | ||
kilonet: ${{ steps.delta.outputs.kilonet_any_changed }} | ||
|
||
steps: | ||
- name: Checkout the repository using git | ||
|
@@ -97,6 +98,8 @@ jobs: | |
- 'apps/rust_api_profile/**' | ||
expolcagents: | ||
- 'apps/expo-lcagents/**' | ||
kilonet: | ||
- 'packages/kilonet/README.md' | ||
expo-lcagents-web-build: | ||
needs: ['alter', 'globals'] | ||
|
@@ -174,6 +177,29 @@ jobs: | |
commit_message: ${{ github.event.head_commit.message }} | ||
rsync_option: '-avrh --delete' | ||
|
||
kilonet-rareicon-build: | ||
needs: ['alter', 'globals'] | ||
name: Kilonet RareIcon | ||
runs-on: ubuntu-latest | ||
if: needs.alter.outputs.kilonet == 'true' | ||
steps: | ||
- name: Checkout this repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Pull RareIcon Kilonet Repo | ||
env: | ||
AZURE_PAT: ${{ secrets.AZURE_NOV2025_TOKEN_SECRET }} | ||
run: | | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git clone https://kbve:${AZURE_PAT}@dev.azure.com/kbve/rareicon/_git/rareicon azure-rareicon | ||
cd azure-rareicon | ||
echo "Current working directory: $(pwd)" | ||
echo "Listing all files in the repository:" | ||
find . -type f | ||
echo "Listing all contents (including hidden files):" | ||
ls -la | ||
# Alpha Builds | ||
|
||
# buildSaber: | ||
|
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