Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: fix wisp.place build with correct site URL and deploy flags

- Set SITE env var for wisp.place build
- Remove --spaa flag from wisp-cli deploy command
- Make site configurable via SITE env var in astro.config.mjs
- Comment out matomo integration

aria c73f4cc7 579cdb62

+17 -18
+2 -3
.github/workflows/astro.yml
··· 82 82 working-directory: ${{ env.BUILD_PATH }} 83 83 - name: Build with Astro 84 84 run: | 85 - pnpm build-action 85 + SITE="https://aria.wisp.place" pnpm build-action 86 86 working-directory: ${{ env.BUILD_PATH }} 87 87 - run: | 88 88 curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli ··· 93 93 ./wisp-cli deploy "${{ vars.WISP_HANDLE }}" \ 94 94 --path ${{ env.BUILD_PATH }}/dist \ 95 95 --site "${{ vars.SITE_NAME }}" \ 96 - --password "${{ secrets.WISP_APP_PASSWORD }}" \ 97 - --spaa 96 + --password "${{ secrets.WISP_APP_PASSWORD }}" 98 97 99 98 deploy: 100 99 environment:
+15 -15
astro.config.mjs
··· 15 15 // https://astro.build/config 16 16 export default defineConfig({ 17 17 output: process.env.DOCKER_BUILD ? "server" : "static", 18 - site: "https://aria.coffee", 18 + site: process.env.SITE || "https://aria.coffee", 19 19 integrations: [ 20 20 preact(), 21 21 // tailwind(), 22 22 icon(), 23 23 mdx(), 24 - matomo({ 25 - enabled: import.meta.env.PROD, // Only load in production 26 - host: "https://analytics.aria.coffee/", 27 - // setCookieDomain: "*.ara.coffee", 28 - // trackerUrl: "js/", // defaults to matomo.php 29 - // srcUrl: "js/", // defaults to matomo.js 30 - siteId: 1, 31 - heartBeatTimer: 5, 32 - // disableCookies: true, 33 - debug: false, 34 - // viewTransition: { 35 - // contentElement: "main" 36 - // } 37 - }), 24 + // matomo({ 25 + // enabled: import.meta.env.PROD, // Only load in production 26 + // host: "https://analytics.aria.coffee/", 27 + // // setCookieDomain: "*.ara.coffee", 28 + // // trackerUrl: "js/", // defaults to matomo.php 29 + // // srcUrl: "js/", // defaults to matomo.js 30 + // siteId: 1, 31 + // heartBeatTimer: 5, 32 + // // disableCookies: true, 33 + // debug: false, 34 + // // viewTransition: { 35 + // // contentElement: "main" 36 + // // } 37 + // }), 38 38 39 39 ], 40 40