Skip to content

Commit

Permalink
First version of custom github workflow to build website.
Browse files Browse the repository at this point in the history
  • Loading branch information
javiarrobas committed Aug 31, 2023
1 parent 984f500 commit 9f4669f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/custom-web-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Custom web build and deploy

on:
push:
branches:
- gh-pages-custom

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Build Docker image
run: cd web && make build-env

- name: Build and deploy website in container
run: cd web && make run

0 comments on commit 9f4669f

Please sign in to comment.