Skip to content

ポートステータスの色を変更 #4

ポートステータスの色を変更

ポートステータスの色を変更 #4

Workflow file for this run

name: "Build Icons"
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Build icons
run: npm run build
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: "_site/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4