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
# .github/workflows/build-client.yml | |
name: Build client and push to a new dist-client-<branch_name> branch | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and Push Client | |
steps: | |
- name: git-checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: 📥 Monorepo install | |
uses: ./.github/actions/pnpm-install | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Build ecs-browser | |
run: pnpm --filter ecs-browser run build | |
- name: Build phaserx | |
run: pnpm --filter phaserx run build | |
- name: Build contracts | |
run: pnpm --filter contracts run build | |
- name: Build client | |
run: pnpm --filter client run build | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Push | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: dist-client-${{ steps.extract_branch.outputs.branch }} # The branch name where you want to push the assets | |
FOLDER: packages/client/dist # The directory where your assets are generated | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token | |
MESSAGE: "client: ({sha}) {msg}" # The commit message |