Merge pull request #147 from barksh/dependabot/npm_and_yarn/vite-5.3.3 #105
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: Deploy with GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "yarn" | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Install Dependencies | |
run: | | |
npm install @sudoo/build-cli -g | |
sudoo-build install | |
- name: Build Project | |
run: | | |
echo "Using VITE_CLIENT_DOMAIN: $VITE_CLIENT_DOMAIN" | |
yarn run build | |
env: | |
VITE_CLIENT_DOMAIN: ${{ vars.VITE_CLIENT_DOMAIN }} | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: dist | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |