Skip to content

feat: added email icon #22

feat: added email icon

feat: added email icon #22

Workflow file for this run

name: πŸ—οΈ Build
on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ›ŽοΈ Checkout
uses: actions/checkout@v3
- name: πŸ—οΈ PNPM Setup
uses: ./.github/actions/setup-pnpm
- name: πŸ”§ Install Dependencies
run: pnpm install
- name: πŸ”¨ Build
run: pnpm run build
- name: πŸ“¦ Upload Build Artifact
uses: actions/upload-artifact@v2
with:
name: "build-artifact-${{ github.sha }}"
path: build
deploy:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: πŸ›ŽοΈ Checkout
uses: actions/checkout@v3
- name: πŸ“¦ Download Build Artifact
uses: actions/download-artifact@v2
with:
name: "build-artifact-${{ github.sha }}"
path: build
- name: πŸ”Ί Publish our Build Artifacts
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: build