fix: don't mv deploy on prod release

This commit is contained in:
Eli Bosley
2025-04-03 10:07:24 -04:00
parent 5a61aec841
commit 9568aabd17
2 changed files with 2 additions and 2 deletions

View File

@@ -389,7 +389,7 @@ jobs:
if [ "${{ needs.release-please.outputs.releases_created }}" == 'true' ]; then
BASE_URL="https://stable.dl.unraid.net/unraid-api"
pnpm run build:plugin --tag="${TAG}" --base-url="${BASE_URL}"
mv ./deploy ./deploy-prod
cp -r ./deploy ./deploy-prod
fi
BASE_URL="https://preview.dl.unraid.net/unraid-api"

View File

@@ -4,7 +4,7 @@ import { AuthActionVerb, AuthPossession, UsePermissions } from 'nest-authz';
import type { AllowedOriginInput } from '@app/graphql/generated/api/types.js';
import { getAllowedOrigins } from '@app/common/allowed-origins.js';
import { Config, ConfigErrorState, Resource } from '@app/graphql/generated/api/types.js';
import { Config, Resource } from '@app/graphql/generated/api/types.js';
import { getters, store } from '@app/store/index.js';
import { updateAllowedOrigins } from '@app/store/modules/config.js';