Skip to content

Commit

Permalink
...write .env properly
Browse files Browse the repository at this point in the history
  • Loading branch information
filleduchaos committed Sep 11, 2024
1 parent 16c1e6e commit 6ee2db8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ jobs:
run: |
echo "appVersion=${{ steps.read_version.outputs.value }}" >> .env
echo "CAP_DESKTOP_SENTRY_URL=https://efd3156d9c0a8a49bee3ee675bec80d8@o4506859771527168.ingest.us.sentry.io/4506859844403200" >> .env
echo "NEXT_PUBLIC_URL=${{ secrets.NEXT_PUBLIC_URL }}" > .env
echo "NEXTAUTH_URL=${NEXT_PUBLIC_URL}" > .env
echo "VITE_SERVER_URL=${NEXT_PUBLIC_URL}" > .env
echo "NEXT_PUBLIC_URL=${{ secrets.NEXT_PUBLIC_URL }}" >> .env
echo 'NEXTAUTH_URL=${NEXT_PUBLIC_URL}' >> .env
echo 'VITE_SERVER_URL=${NEXT_PUBLIC_URL}' >> .env
- name: Copy .env to apps/desktop-solid
run: cp .env apps/desktop-solid/.env
Expand All @@ -92,7 +92,6 @@ jobs:
# Build both intel and apple silicon
working-directory: apps/desktop-solid
run: |
rustup target add x86_64-apple-darwin
pnpm install
node ${{ github.workspace }}/.github/prebuild.js x86_64
pnpm tauri build --target x86_64-apple-darwin
Expand Down

0 comments on commit 6ee2db8

Please sign in to comment.