Skip to content

upkeep: fjerner denne til bot er klar #198

upkeep: fjerner denne til bot er klar

upkeep: fjerner denne til bot er klar #198

Workflow file for this run

# Sample workflow for building and deploying a static site site to GitHub Pages
name: Deploy
on:
push:
branches: ["main"]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn --frozen-lockfile
- run: yarn run build
env:
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: build/
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4