Skip to content

Commit

Permalink
ci(alpha): adding the action to pull azure repo into github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
h0lybyte committed Nov 15, 2024
1 parent 12e711e commit 73171ac
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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']
Expand Down Expand Up @@ -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:
Expand Down
9 changes: 9 additions & 0 deletions apps/kbve.com/src/content/journal/11-15.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,12 @@ import { Adsense, Tasks } from '@kbve/astropad';

Oh Fridays! They are always the best, ending the week and seeing where everything sits within the market.
I am thinking we might be able to survive this week without any major problems, other than a pipeline.

- 09:45AM

**Azure**

Time to build out the Azure pipeline and in this situation, we want to focus on getting the unity to build the rareicon game and push the code out.
Now trying to get this resolved, we first need to fix the azure pipeline and make sure that we can pull from the repo.
The best move would be test it within the alpha pull request, so lets go ahead and try that out!
If everything goes as planned, we should be able to build the unity game each time there are changes to the `kilonet` readme.

0 comments on commit 73171ac

Please sign in to comment.