added better ui without orders #41
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: Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
env: | |
CI: false | |
VITE_COINAPI_API_KEY: ${{ secrets.VITE_COINAPI_API_KEY }} # Pass the secret as an environment variable | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: dist # The folder the action should deploy. | |
env: | |
VITE_COINAPI_API_KEY: ${{ secrets.VITE_COINAPI_API_KEY }} # Pass the secret as an environment variable | |
permissions: | |
contents: write |