Merge branch 'master' into feature/copy_screenshot_to_xochitl #899
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build website | |
on: | |
push: | |
branches: | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
- '!master' # excludes master | |
paths: | |
- 'web/**' | |
- 'shared/liboxide/**' | |
- '.github/actions/web/**' | |
pull_request: | |
paths: | |
- 'web/**' | |
- 'shared/liboxide/**' | |
- '.github/actions/web/**' | |
jobs: | |
web: | |
name: Build web | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Git repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build web | |
uses: ./.github/actions/web | |
- name: Save web | |
uses: actions/upload-artifact@v4 | |
with: | |
name: web | |
path: web/dist | |