2023-05-03 20:50:29 +02:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
|
|
|
- feature/*
|
|
|
|
- bugfix/*
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-05-03 21:53:31 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2023-05-03 21:48:23 +02:00
|
|
|
steps:
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build docker images
|
|
|
|
run: ./build.sh
|
2023-05-04 10:31:21 +02:00
|
|
|
- name: Archive production artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: dist
|
|
|
|
path: |
|
|
|
|
dist
|
2023-05-03 21:48:23 +02:00
|
|
|
|