This repository has been archived by the owner on Mar 24, 2024. It is now read-only.
Updated photo handling and UI interactions in various files #73
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: AwaiShop | |
on: | |
push: | |
branches: | |
- Dev | |
jobs: | |
build_deploy: | |
runs-on: ubuntu-latest | |
name: Build and Deploy | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: true | |
- name: Set up .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.x" | |
dotnet-quality: preview | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "latest" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: "latest" | |
run_install: false | |
- name: Get pnpm store | |
id: pnpm-cache | |
run: | | |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Build React | |
run: pnpm install && pnpm build | |
- name: Pages Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
publish_branch: gh-pages | |
cname: Awai.Aloen.to | |
- name: Build C# | |
run: dotnet publish SoarCraft.AwaiShop/SoarCraft.AwaiShop.csproj -c Release -o AwaiShop -r linux-x64 --self-contained true | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./AwaiShop | |
publish_branch: Infra |