Skip to content

Add Krzysztof Nowicki as a new author #4

Add Krzysztof Nowicki as a new author

Add Krzysztof Nowicki as a new author #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- '**'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build website
run: npm run build:debug
env:
CURRENT_BRANCH: ${{ github.ref_name }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main' || github.event.repository.fork
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4