initial SRO light cone sheet with targeted buff (#2531) #555
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
name: Build Somnia | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'apps/frontend/**' | |
- 'apps/frontend-e2e/**' | |
- 'apps/gi-frontend/**' | |
- 'apps/gi-frontend-e2e/**' | |
- 'apps/sr-frontend/**' | |
- 'apps/sr-frontend-e2e/**' | |
- 'libs/common/database-ui/**' | |
- 'libs/common/img-util/**' | |
- 'libs/common/react-util/**' | |
- 'libs/common/svgicons/**' | |
- 'libs/common/ui/**' | |
- 'libs/gi/art-scanner/**' | |
- 'libs/gi/assets/**' | |
- 'libs/gi/char-cards/**' | |
- 'libs/gi/db-ui/**' | |
- 'libs/gi/formula-ui/**' | |
- 'libs/gi/frontend-gql/**' | |
- 'libs/gi/i18n/**' | |
- 'libs/gi/page-*/**' | |
- 'libs/gi/prisma-schema/**' | |
- 'libs/gi/silly-wisher/**' | |
- 'libs/gi/silly-wisher-names/**' | |
- 'libs/gi/solver/**' | |
- 'libs/gi/solver-tc/**' | |
- 'libs/gi/supabase/**' | |
- 'libs/gi/svgicons/**' | |
- 'libs/gi/ui/**' | |
- 'libs/gi/uidata/**' | |
- 'libs/gi/wr/**' | |
- 'libs/sr/assets/**' | |
- 'libs/sr/i18n/**' | |
- 'libs/sr/page-*/**' | |
- 'libs/sr/solver/**' | |
- 'libs/sr/ui/**' | |
types: [opened, reopened, synchronize, labeled] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
name: 'call-build / build' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Cache Key | |
id: get-cache-key | |
run: | | |
echo "key=$(git ls-tree -r HEAD | grep '^160000' | sha256sum | cut -d " " -f 1)" >> $GITHUB_OUTPUT | |
- uses: actions/cache/restore@v4 | |
with: | |
path: .git/modules | |
key: submodule-${{ steps.get-cache-key.outputs.key }} | |
restore-keys: | | |
submodule- | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Yarn install | |
run: | | |
yarn install --immutable --immutable-cache | |
- name: Build Somnia | |
run: | | |
NX_DAEMON="false" | |
cp apps/somnia/src/config.empty.json apps/somnia/src/config.json | |
yarn run nx run somnia:build:production | |
- name: echos | |
run: | | |
if [[ "${{ github.ref }}" == "refs/heads/master" ]]; then | |
echo "somnia-prod" > environment | |
else | |
echo "somnia-test" > environment | |
fi | |
echo $(git rev-parse HEAD) > ref | |
echo ${{ contains(github.event.pull_request.labels.*.name, 'deploySomnia') }} > shouldDeploy | |
echo ${{ github.event.number }} > prNumber | |
- name: Archive build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: somnia_build | |
path: | | |
dist/apps/somnia | |
environment | |
ref | |
shouldDeploy | |
prNumber |