Skip to content

actions

actions #7

Workflow file for this run

name: Build website UIs
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: github-pages
cancel-in-progress: false
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# build en website
- name: Install Gulp locally to build the UI
run: npm i gulp-cli ./en
- name: Build UI
run: gulp bundle -f ./en/gulpfile.js
# build fr website
- name: Install Gulp locally to build the UI
run: npm i gulp-cli ./en
- name: Build UI
run: gulp bundle -f ./en/gulpfile.js
# download UIs
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: ui-bundles
path: */build/ui-bundle.zip

Check failure on line 35 in .github/workflows/build-ui.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-ui.yml

Invalid workflow file

You have an error in your yaml syntax on line 35