его залить на GitHub, чтобы просматривать сайт уже с телефона и делиться ссылкой с кем-либо
Как это сделать??
Сгенерировать статику и задеплоить на github pages
Про это почитал уже, мне нужен пошаговый план
Проще vercel.com
я делал в репозитории файл .github\workflows\static.yml в него заливал # Simple workflow for building vue-app and deploying static content to GitHub Pages name: Build Vue And Deploy static content to Pages on: # Runs on pushes targeting the default branch push: branches: [main] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: pages cancel-in-progress: false jobs: # Single deploy job since we're just deploying deploy: name: Deploy to Github Pages # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: contents: read pages: write id-token: write environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest env: VARS_JSON: ${{ toJSON(vars) }} steps: # Inject all vars from github - name: Read a variable run: echo "$VARS_JSON" | jq -r 'keys[] as $k | "\($k)=\(.[$k])"' >> $GITHUB_ENV - name: Checkout uses: actions/checkout@v4 - name: Build Vue run: npm install; npm run build shell: bash - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: # Upload entire repository path: ./dist - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2 в настройках репозитория делал источник github-actions. И при каждом пуше был автодеплой, который сам и подскажет, куда задеплоил
Обсуждают сегодня