27 lines
618 B
YAML
27 lines
618 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-web:
|
|
runs:
|
|
using: flutter-web-builder
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
run: ls -la
|
|
|
|
- name: Cache Flutter
|
|
id: cache-flutter
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ HOME }}/.pub-cache
|
|
key: ${{ forge.ref_name }}-flutter-cache-temp
|
|
|
|
- name: Cache pub dependencies
|
|
uses: actions/cache@v4
|
|
id: cache-pub
|
|
with:
|
|
path: ${{ HOME }}/.pub-cache
|
|
key: ${{ forge.ref_name }}-pub-cache-temp
|