Skip to content

Create LICENSE

Create LICENSE #36

Workflow file for this run

name: pages-start-build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
environment: github-pages
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
- name: Install dependencies
run: npm install
- name: Prepare and deploy
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NAME: ${{ secrets.NAME }}
EMAIL: ${{ secrets.EMAIL }}
run: |
npm run ng -- deploy --repo=https://github.com/fipguide/fipguide.github.io.git --cname=fip.rommeiss.de --name $NAME --email $EMAIL