a few docker-related fixes

This commit is contained in:
2024-07-26 19:11:26 +02:00
parent 2736a89f70
commit 3fa689fd16
6 changed files with 34 additions and 33 deletions

View File

@@ -1,34 +1,34 @@
on:
pull_request:
branches:
- main
paths:
- frontend/**
# on:
# pull_request:
# branches:
# - main
# paths:
# - frontend/**
name: Build web
# name: Build web
jobs:
build:
name: Build Web
runs-on: ubuntu-latest
steps:
# jobs:
# build:
# name: Build Web
# runs-on: ubuntu-latest
# steps:
- name: Install prerequisites
run: |
sudo apt-get update
sudo apt-get install -y xz-utils
# - name: Install prerequisites
# run: |
# sudo apt-get update
# sudo apt-get install -y xz-utils
- uses: actions/checkout@v4
# - uses: actions/checkout@v4
- uses: https://github.com/subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.6
cache: true
# - uses: https://github.com/subosito/flutter-action@v2
# with:
# channel: stable
# flutter-version: 3.19.6
# cache: true
- run: flutter pub get
working-directory: ./frontend
# - run: flutter pub get
# working-directory: ./frontend
- run: flutter build web
working-directory: ./frontend
# - run: flutter build web
# working-directory: ./frontend