Skip to content

add build with AI event link #11

add build with AI event link

add build with AI event link #11

Workflow file for this run

name: Deploy to GitHub Pages
on: [push]
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install, Build & deploy
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/gdgportlaoise/site.git
npm install
npm run gh-pages -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}