Skip to content

Switch to larger image format to allow for transparency #355

Switch to larger image format to allow for transparency

Switch to larger image format to allow for transparency #355

Workflow file for this run

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@v3
with:
submodules: true
- name: Build web
uses: ./.github/actions/web
- name: Save web
uses: actions/upload-artifact@v3
with:
name: web
path: web/dist