This repository has been archived by the owner on Feb 9, 2024. It is now read-only.
Fix extension upload #14
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 and release | |
on: | |
push: | |
# Pattern matched against refs/tags | |
tags: | |
- '*' # Push events to every tag not containing / | |
branches: [build-upload-extension] | |
# Allows us to run the workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
flutter_version: 3.13.6 | |
jobs: | |
chrome-extension-build-and-upload: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: 'stable' | |
cache: true | |
- name: Download pub dependencies | |
run: flutter pub get | |
- name: Build Extension | |
run: flutter build web --web-renderer html --csp --release | |
- name: Get package version | |
id: package_version | |
uses: mikefarah/yq@master | |
with: | |
cmd: yq .version pubspec.yaml | |
- name: Upload Bundle | |
uses: actions/upload-artifact@v3 | |
with: | |
name: concordium-wallet-web-${{ steps.package_version.outputs.result }} | |
# We package everything except the canvaskit, which we don't use | |
path: "${{github.workspace}}/build/web/" |