Skip to content

Update personalledelse-about.md #213

Update personalledelse-about.md

Update personalledelse-about.md #213

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Install and Build 🔧
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: public # The folder the action should deploy.
- name: Notify Academy Slack
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_TITLE: 'Academy Web Pages Updated'
SLACK_COLOR: ${{ job.status }}
SLACK_FOOTER: 'Brought to you by the Knowit Academy Development Team :nerd_face:'
MSG_MINIMAL: true