Skip to content

Working docker-compose example (#167) #2

Working docker-compose example (#167)

Working docker-compose example (#167) #2

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder.
working-directory: web/ahnlich-web
run: |
npm ci --legacy-peer-deps
npm run build
touch out/.nojekyll
echo "ahnlich.tech" >> out/CNAME
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: web/ahnlich-web/out # The folder the action should deploy.