Added new logo , Changed Label color 🦠 #11
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
#Allow repo secrets | |
env: | |
VITE_SECRET: ${{ secrets.VITE_SECRET }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20" | |
- name: Install Dependencies | |
run: yarn | |
- name: Build Project | |
run: yarn run build | |
- name: Archive Build | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -r turtle.zip dist | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: turtle | |
path: turtle.zip |